diff --git a/Readme.md b/Readme.md index d3ef29473c800..2770c49a58ca8 100644 --- a/Readme.md +++ b/Readme.md @@ -47,7 +47,7 @@ IoTDB's features are as following: 7. Intense integration with Open Source Ecosystem. IoTDB supports Hadoop, Spark, etc. analysis ecosystems and Grafana visualization tool. -For the latest information about IoTDB, please visit our [IoTDB official website](http://tsfile.org/index) (will transfer to iotdb.apache.org in the future). +For the latest information about IoTDB, please visit our [IoTDB official website](http://iotdb.apache.org/#/). # Prerequisites @@ -58,38 +58,81 @@ To use IoTDB, you need to have: If you want to use Hadoop or Spark to analyze IoTDB data file (called as TsFile), you need to compile the hadoop and spark modules. - # Quick Start -This short guide will walk you through the basic process of using IoTDB. For a more-complete guide, please visit our website's [Document Part](http://tsfile.org/document). +This short guide will walk you through the basic process of using IoTDB. For a more-complete guide, please visit our website's [Document Part](http://iotdb.apache.org/#/Documents/Quick%20Start). -## Build +### Installation from source code + +Use git to get IoTDB source code: -If you are not the first time that building IoTDB, remember deleting the following files: ``` -rm -rf iotdb/iotdb/data/ -rm -rf iotdb/iotdb/lib/ +Shell > git clone https://github.com/apache/incubator-iotdb.git ``` -Then you can build IoTDB using Maven in current folder: +Or: ``` -mvn clean package -Dmaven.test.skip=true +Shell > git clone git@github.com:apache/incubator-iotdb.git +``` + +Now suppose your directory is like this: + ``` +> pwd +/User/workspace/incubator-iotdb -(__NOTICE:__ Remember that you have to use -Dmaven.test.skip=true before you run tests, it is because some IT (integration test) requires jars in iotdb-cli/cli/lib/, and the folder is empty before you run `mvn package`. After that, you can run `mvn test` as long as you do not run `mvn clean`. For more details, see: [How to test IoTDB -](https://github.com/thulab/iotdb/wiki/How-to-test-IoTDB) ) +> ls -l +incubator-iotdb/ <-- root path +| ++- iotdb/ +| ++- jdbc/ +| ++- tsile/ +| +... +| ++- pom.xml +``` + +Let $IOTDB_HOME = /User/workspace/incubator-iotdb/iotdb/iotdb/ + +If you are not the first time that building IoTDB, remember deleting the following files: + +``` +> rm -rf $IOTDB_HOME/data/ +> rm -rf $IOTDB_HOME/lib/ +``` + +Then under the root path of incubator-iotdb, you can build IoTDB using Maven: + +``` +> pwd +/User/workspace/incubator-iotdb + +> mvn clean package -pl iotdb -am -Dmaven.test.skip=true +``` If successful, you will see the the following text in the terminal: ``` +[INFO] ------------------------------------------------------------------------ +[INFO] Reactor Summary: +[INFO] +[INFO] IoTDB Root ......................................... SUCCESS [ 7.020 s] +[INFO] TsFile ............................................. SUCCESS [ 10.486 s] +[INFO] Service-rpc ........................................ SUCCESS [ 3.717 s] +[INFO] IoTDB Jdbc ......................................... SUCCESS [ 3.076 s] +[INFO] IoTDB .............................................. SUCCESS [ 8.258 s] +[INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ ``` Otherwise, you may need to check the error statements and fix the problems. After build, the IoTDB project will be at the folder "iotdb/iotdb". The folder will include the following contents: - ``` iotdb/iotdb/ <-- root path | @@ -98,11 +141,9 @@ iotdb/iotdb/ <-- root path +- conf/ <-- configuration files | +- lib/ <-- project dependencies -| -+- LICENSE <-- LICENSE ``` -> NOTE: We also provide already built JARs and project at [http://tsfile.org/download](http://tsfile.org/download) instead of build the jar package yourself. + ## Configure @@ -110,7 +151,7 @@ Before starting to use IoTDB, you need to config the configuration files first. In total, we provide users three kinds of configurations module: environment config module (iotdb-env.bat, iotdb-env.sh), system config module (tsfile-format.properties, iotdb-engine.properties) and log config module (logback.xml). All of these kinds of configuration files are put in iotdb/config folder. -For more, you are advised to check our website [document page](http://tsfile.org/document). The forth chapter in User Guide Document will give you the details. +For more, you are advised to check our website [document page](http://iotdb.apache.org/#/Documents/Quick%20Start). The forth chapter in User Guide Document will give you the details. ## Start @@ -120,10 +161,10 @@ After that we start the server. Running the startup script: ``` # Unix/OS X -> ./bin/start-server.sh +> $IOTDB_HOME/bin/start-server.sh # Windows -> bin\start-server.bat +> $IOTDB_HOME\bin\start-server.bat ``` ### Stop Server @@ -132,10 +173,10 @@ The server can be stopped with ctrl-C or the following script: ``` # Unix/ OS X -> ./bin/stop-server.sh +> $IOTDB_HOME/bin/stop-server.sh # Windows -> bin\stop-server.bat +> $IOTDB_HOME\bin\stop-server.bat ``` ### Start Client @@ -146,10 +187,10 @@ Now let's trying to read and write some data from IoTDB using our Client. To sta cd cli/cli # Unix/OS X -> ./bin/start-client.sh -h -p -u -pw +> $IOTDB_HOME/bin/start-client.sh -h -p -u # Windows -> bin\start-client.bat -h -p -u -pw +> $IOTDB_HOME\bin\start-client.bat -h -p -u ``` > NOTE: In the system, we set a default user in IoTDB named 'root'. The default password for 'root' is 'root'. You can use this default user if you are making the first try or you didn't create users by yourself. @@ -162,7 +203,7 @@ The command line client is interactive so if everything is ready you should see | | .--.|_/ | | \_| | | `. \ | |_) | | | / .'`\ \ | | | | | | | __'. _| |_| \__. | _| |_ _| |_.' /_| |__) | -|_____|'.__.' |_____| |______.'|_______/ version 0.7.0 +|_____|'.__.' |_____| |______.'|_______/ version x.x.x IoTDB> login successfully @@ -219,7 +260,7 @@ execute successfully. If your session looks similar to what's above, congrats, your IoTDB is operational! -For more on what commands are supported by IoTDB SQL, see our website [document page](http://tsfile.org/document). The eighth chapter in User Guide Document will give you help. +For more on what commands are supported by IoTDB SQL, see our website [document page](http://iotdb.apache.org/#/Documents/Quick%20Start). The eighth chapter in User Guide Document will give you help. # Usage of import-csv.sh @@ -238,6 +279,8 @@ CREATE TIMESERIES root.fit.p.s1 WITH DATATYPE=INT32,ENCODING=RLE; ### Run import shell ``` +cd cli/cli + # Unix/OS X > ./bin/import-csv.sh -h -p -u -pw -f @@ -253,6 +296,8 @@ csvInsertError.error ### Run export shell ``` +cd cli/cli + # Unix/OS X > ./bin/export-csv.sh -h -p -u -pw -td [-tf ] diff --git a/docs/Community-History&Vision.md b/docs/Community-History&Vision.md new file mode 100644 index 0000000000000..46c3cc907d834 --- /dev/null +++ b/docs/Community-History&Vision.md @@ -0,0 +1,3 @@ +# History&Vision + +Comming Soon. diff --git a/docs/Community-Powered By.md b/docs/Community-Powered By.md new file mode 100644 index 0000000000000..f29d0c70e7a76 --- /dev/null +++ b/docs/Community-Powered By.md @@ -0,0 +1,21 @@ + + +- [Powered By](#powered-by) + - [Project and Product names using "IoTDB"](#project-and-product-names-using-iotdb) + - [Companies and Organizations](#companies-and-organizations) + + +## Powered By + +### Project and Product names using "IoTDB" + +Organizations creating products and projects using Apache IoTDB, along with associated marketing materials, should take care to respect the trademark in “Apache IoTDB” and its logo. Please refer to [ASF Trademarks Guidance](https://www.apache.org/foundation/marks/) and associated [FAQ](https://www.apache.org/foundation/marks/faq/) for comprehensive and authoritative guidance on proper usage of ASF trademarks. +It is recommended to not include “IoTDB” in any names to prevent potential trademark issue with the IoTDB project. +As an example, names like “IoTDB BigDataProduct” should not be used, as the name include “IoTDB” in general. The above links, however, describe some exceptions, like for names such as “BigDataProduct, powered by Apache IoTDB” or “BigDataProduct for Apache IoTDB”. In summary, any names contain "Apache IoTDB" as a whole are acceptable. +A common practice you can take is to create software identifiers (Maven coordinates, module names, etc.) like “iotdb-tool”. These are permitted. Nominative use of trademarks in descriptions is also allowed, as in “BigDataProduct is a subproduct for Apache IoTDB”. + +### Companies and Organizations +To add yourself to the list, please email dev@iotdb.apache.org with your organization name, URL, a list of IoTDB components you are using, and a short description of your use case. + +- School of Software (Tsinghua University), and National Engineering Laboratery for Big Data Software that initially launched IoTDB + - We have both graduate students and a team of professional software engineers working on the stack diff --git a/docs/Community-Project Committers.md b/docs/Community-Project Committers.md new file mode 100644 index 0000000000000..70b40ef46f138 --- /dev/null +++ b/docs/Community-Project Committers.md @@ -0,0 +1,22 @@ +# Project Committers + +| Name | Organization | +| :----------- | -------------: | +| Jianmin Wang | Tsinghua University | +|Xiangdong Huang | Tsinghua University | +| Jun Yuan | Tsinghua University | +| Chen Wang | Tsinghua University | +| Jialin Qiao | Tsinghua University | +| Jinrui Zhang | Tsinghua University | +| Rong Kang | Tsinghua University | +| Tian Jiang | Tsinghua University | +| Shuo Zhang | K2Data Company | +| Lei Rui | Tsinghua University | +| Rui Liu | Tsinghua University | +| Gaofei Cao | Tsinghua University | +| Xinyi Zhao | Tsinghua University | +| Yi Xu | Tsinghua University | +| Dongfang Mao | Tsinghua University | +| Tianan li | Tsinghua University | +| Yue Su | Tsinghua University | +| Hui Da | Lenovo | diff --git a/docs/Development.md b/docs/Development.md new file mode 100644 index 0000000000000..cd6fec33fe201 --- /dev/null +++ b/docs/Development.md @@ -0,0 +1,176 @@ + + +- [Have Questions](#have-questions) + - [Mailing Lists](#mailing-lists) + - [JIRA issues](#jira-issues) +- [How to contribute](#how-to-contribute) + - [Becoming a committer](#becoming-a-committer) + - [Contributing by Helping Other Users](#contributing-by-helping-other-users) + - [Contributing by Testing Releases](#contributing-by-testing-releases) + - [Contributing by Reviewing Changes](#contributing-by-reviewing-changes) + - [Contributing by Documentation Changes](#contributing-by-documentation-changes) + - [Contributing Bug Reports](#contributing-bug-reports) + - [Contributing Code Changes](#contributing-code-changes) + - [Cloning source code](#cloning-source-code) + - [JIRA](#jira) + - [Pull Request](#pull-request) + - [The Review Process](#the-review-process) + - [Closing Your Pull Request / JIRA](#closing-your-pull-request--jira) + - [Code Style](#code-style) + + + +# Have Questions + +## Mailing Lists + +It is recommended to use our mailing lists to ask for help, report issues or contribute to the project. + +* dev@iotdb.apache.org is for anyone who want to contribute codes to IoTDB or have usage questions for IoTDB. + +Some quick tips when using email: +* For error logs or long code examples, please use GitHub gist and include only few lines of the pertinent code / log within the email. +* No jobs, sales, or solicitation is permitted on the Apache IoTDB mailing lists. + +PS. To subscribe our mail list, you can send an email to dev-subscribe@iotdb.incubator.apache.org and you will receive a "confirm subscribe to dev@iotdb.apache.org" email, following the steps to confirm your subscription. + +## JIRA issues + +The project tracks issues and new features on [JIRA issues](https://issues.apache.org/jira/projects/IOTDB/issues). You can create a new issue to report a bug, request a new feature or provide your custmon issue. + +# How to contribute + +## Becoming a committer + +To become a committer, you should first be active in our community so that most of our existing committers recognize you. Pushing codes and creating pull requests is just one of committer's rights. Moreover, it is committer's duty to help new uesrs on mail list, test new releases and improve documentation. + +### Contributing by Helping Other Users + +Since Apache IoTDB always attracts new users, it would be great if you can help them by answering questions on the dev@iotdb.apache.org mail list. We regard it as a valuable contribution. Also, the more questions you answer, the more poeple know you. Popularity is one of the necessary conditions to be a committer. + +Contributors should subscribe to our mailing list to catch up the latest progress. + +### Contributing by Testing Releases + +IoTDB's new release is visible to everyone, members of the community can vote to accept these releases on the dev@iotdb.apache.org mailing list. Users of IoTDB will be invited to try out on their workloads and provide feedback on any performance or correctness issues found in the newer release. + +### Contributing by Reviewing Changes + +Changes to IoTDB source codes are made through Github pull request. Anyone can review and comment on these changes. Reviewing others' pull requests can help you comprehend how a bug is fixed or a new feature is added. Besides, Learning directly from source code will give you a deeper understanding of how IoTDB system works and where its bottlenecks lie. You can help by reviewing the changes, asking questions and pointing out issues. + +### Contributing by Documentation Changes + +To propose a change to release documentation (that is, docs that appear under ), edit the Markdown source files in Iotdb’s docs/ directory(`documentation-EN` branch). The process to propose a doc change is otherwise the same as the process for proposing code changes below. + +### Contributing Bug Reports + +If you encounter a problem, try to search the mailing list and JIRA to check whether other people have faced the same situation. If it is not reported before, please report an issue. + +Once you are sure it is a bug, it may be reported by creating a JIRA without creating a pull request. In the bug report, you should provide enough information to understand, isolate and ideally reproduce the bug. Unreproducible bugs, or simple error reports, may be closed. + +It’s very helpful if the bug report has a description about how the bug was introduced, by which commit, so that reviewers can easily understand the bug. It also helps committers to decide how far the bug fix should be backported, when the pull request is merged. The pull request to fix the bug should narrow down the problem to the root cause. + +Performance regression is also one kind of bug. The pull request to fix a performance regression must provide a benchmark to prove the problem is indeed fixed. + +Note that, data correctness/loss bugs are our first priority to solve. Please make sure the corresponding bug-reporting JIRA ticket is labeled as correctness or data-loss. If the bug report doesn’t gain enough attention, please include it and send an email to dev@iotdb.apache.org. + +### Contributing Code Changes + +> When you contribute code, you affirm that the contribution is your original work and that you license the work to the project under the project’s open source license. Whether or not you state this explicitly, by submitting any copyrighted material via pull request, email, or other means you agree to license the material under the project’s open source license and warrant that you have the legal authority to do so. Any new files contributed should be under Apache 2.0 License with a header on top of it. + +#### Cloning source code + +``` +$ git clone git@github.com:apache/incubator-iotdb.git +``` +Following README.md to test, run or build IoTDB. + +#### JIRA + +Generally, IoTDB uses JIRA to track logical issues, including bugs and improvements, and uses Github pull requests to manage the review and merge specific code changes. That is, JIRAs are used to describe what should be fixed or changed, proposing high-level approaches. Pull requests describe how to implement that change in the project’s source code. For example, major design decisions discussed in JIRA. + +1. Find the existing IoTDB JIRA that the change pertains to. + 1. o not create a new JIRA if you send a PR to address an existing issue labeled in JIRA; add it to the existing discussion. + 2. Look for existing pull requests that are linked from the JIRA, to understand if someone is already working on the JIRA +2. If the change is new, then it usually needs a new JIRA. However, trivial changes, such as changes are self-explained do not require a JIRA. Example: Fix spelling error in JavaDoc +3. If required, create a new JIRA: + 1. Provide a descriptive Title. “Problem in XXXManager” is not sufficient. “IoTDB failed to start on jdk11 because jdk11 does not support -XX:+PrintGCDetail” is good. + 2. Write a detailed Description. For bug reports, this should ideally include a short reproduction of the problem. For new features, it may include a design document. + 3. Set required fields: + 1. Issue Type. Generally, Bug, Improvement and New Feature are the only types used in IoTDB. + 2. Priority. Set to Major or below; higher priorities are generally reserved for committers to set. The main exception is correctness or data-loss issues, which can be flagged as Blockers. JIRA tends to unfortunately conflate “size” and “importance” in its Priority field values. Their meaning is roughly: + 1. Blocker: pointless to release without this change as the release would be unusable to a large minority of users. Correctness and data loss issues should be considered Blockers. + 2. Critical: a large minority of users are missing important functionality without this, and/or a workaround is difficult + 3. Major: a small minority of users are missing important functionality without this, and there is a workaround + 4. Minor: a niche use case is missing some support, but it does not affect usage or is easily worked around + 5. Trivial: a nice-to-have change but unlikely to be any problem in practice otherwise + 3. Affected Version. For Bugs, assign at least one version that is known to reproduce the issue or need to be changed + 4. Label. Not widely used, except for the following: + * correctness: a correctness issue + * data-loss: a data loss issue + * release-notes: the change’s effects need mention in release notes. The JIRA or pull request should include detail suitable for inclusion in release notes – see “Docs Text” below. + * starter: small, simple change suitable for new contributors + 5. Docs Text: For issues that require an entry in the release notes, this should contain the information that the release manager should include. Issues should include a short summary of what behavior is impacted, and detail on what behavior changed. It can be provisionally filled out when the JIRA is opened, but will likely need to be updated with final details when the issue is resolved. + 4. Do not set the following fields: + 1. Fix Version. This is assigned by committers only when resolved. + 2. Target Version. This is assigned by committers to indicate a PR has been accepted for possible fix by the target version. + 5. Do not include a patch file; pull requests are used to propose the actual change. +4. If the change is a large change, consider raising a discussion on it at dev@iotdb.apache.org first before proceeding to implement the change. Currently, we use https://cwiki.apache.org/confluence to store design proposals and release process. Users can also send them there. + + +#### Pull Request + +1. Fork the Github repository at https://github.com/apache/incubator-iotdb if you haven’t done already. +2. Clone your fork, create a new branch, push commits to the branch. +3. Please add documentation and tests to explain/cover your changes. +Run all tests with [How to test](https://github.com/thulab/iotdb/wiki/How-to-test-IoTDB) to verify your change. +4. Open a pull request against the master branch of IoTDB. (Only in special cases would the PR be opened against other branches.) + 1. The PR title should be in the form of "IoTDB-xxxx", where xxxx is the relevant JIRA number. + 2. If the pull request is still under work in progress stage but needs to be pushed to Github to request for review, please add "WIP" after the PR title. + 3. Consider identifying committers or other contributors who have worked on the code being changed. Find the file(s) in Github and click “Blame” to see a line-by-line annotation of who changed the code last. You can add @username in the PR description to ping them immediately. + 4. Please state that the contribution is your original work and that you license the work to the project under the project’s open source license. +5. The related JIRA, if any, will be marked as “In Progress” and your pull request will automatically be linked to it. There is no need to be the Assignee of the JIRA to work on it, though you are welcome to comment that you have begun work. +6. The Jenkins automatic pull request builder will test your changes + 1. If it is your first contribution, Jenkins will wait for confirmation before building your code and post “Can one of the admins verify this patch?” + 2. A committer can authorize testing with a comment like “ok to test” + 3. A committer can automatically allow future pull requests from a contributor to be tested with a comment like “Jenkins, add to whitelist” +7. Watch for the results, and investigate and fix failures promptly + 1. Fixes can simply be pushed to the same branch from which you opened your pull request + 2. Jenkins will automatically re-test when new commits are pushed + 3. If the tests failed for reasons unrelated to the change (e.g. Jenkins outage), then a committer can request a re-test with “Jenkins, retest this please”. Ask if you need a test restarted. If you were added by “Jenkins, add to whitelist” from a committer before, you can also request the re-test. + +#### The Review Process + +* Other reviewers, including committers, may comment on the changes and suggest modifications. Changes can be added by simply pushing more commits to the same branch. +* Lively, polite, rapid technical debate is encouraged from everyone in the community. The outcome may be a rejection of the entire change. +* Keep in mind that changes to more critical parts of IoTDB, like its read/write data from/to disk, will be subjected to more review, and may require more testing and proof of its correctness than other changes. +* Reviewers can indicate that a change looks suitable for merging with a comment such as: “I think this patch looks good” or "LGTM". If you comment LGTM you will be expected to help with bugs or follow-up issues on the patch. Consistent, judicious use of LGTMs is a great way to gain credibility as a reviewer with the broader community. +* Sometimes, other changes will be merged which conflict with your pull request’s changes. The PR can’t be merged until the conflict is resolved. This can be resolved by, for example, adding a remote to keep up with upstream changes by + +```shell +git remote add upstream git@github.com:apache/incubator-iotdb.git +git fetch upstream +git rebase upstream/master +# or you can use `git pull --rebase upstream master` to replace the above two commands +# resolve your conflicts +# push codes to your branch +``` + +* Try to be responsive to the discussion rather than let days pass between replies + +#### Closing Your Pull Request / JIRA +* If a change is accepted, it will be merged and the pull request will automatically be closed, along with the associated JIRA if any + * Note that in the rare case you are asked to open a pull request against a branch beside master, you actually have to close the pull request manually + * The JIRA will be Assigned to the primary contributor to the change as a way of giving credit. If the JIRA isn’t closed and/or Assigned promptly, comment on the JIRA. +* If your pull request is ultimately rejected, please close it promptly + * … because committers can’t close PRs directly + * Pull requests will be automatically closed by an automated process at Apache after about a week if a committer has made a comment like “mind closing this PR?” This means that the committer is specifically requesting that it be closed. +* If a pull request has gotten little or no attention, consider improving the description or the change itself and ping likely reviewers again after a few days. Consider proposing a change that’s easier to include, like a smaller and/or less invasive change. +* If it has been reviewed but not taken up after weeks, after soliciting review from the most relevant reviewers, or, has met with neutral reactions, the outcome may be considered a “soft no”. It is helpful to withdraw and close the PR in this case. +* If a pull request is closed because it is deemed not the right approach to resolve a JIRA, then leave the JIRA open. However if the review makes it clear that the issue identified in the JIRA is not going to be resolved by any pull request (not a problem, won’t fix) then also resolve the JIRA + +#### Code Style + +For Java code, Apache IoTDB follows Google’s Java Style Guide. + + diff --git a/docs/Documentation/Frequently asked questions.md b/docs/Documentation/Frequently asked questions.md new file mode 100644 index 0000000000000..dc9a4bed73e29 --- /dev/null +++ b/docs/Documentation/Frequently asked questions.md @@ -0,0 +1,105 @@ + + +- [Frequently Asked Questions](#frequently-asked-questions) + - [How can I identify my version of IoTDB?](#how-can-i-identify-my-version-of-iotdb) + - [Where can I find IoTDB logs?](#where-can-i-find-iotdb-logs) + - [Where can I find IoTDB data files?](#where-can-i-find-iotdb-data-files) + - [How do I know how many time series are stored in IoTDB?](#how-do-i-know-how-many-time-series-are-stored-in-iotdb) + - [Can I use Hadoop and Spark to read TsFile in IoTDB?](#can-i-use-hadoop-and-spark-to-read-tsfile-in-iotdb) + - [How does IoTDB handle duplicate points?](#how-does-iotdb-handle-duplicate-points) + - [How can I tell what type of the specific timeseries?](#how-can-i-tell-what-type-of-the-specific-timeseries) + - [How can I change IoTDB's CLI time display format?](#how-can-i-change-iotdbs-cli-time-display-format) + + +# Frequently Asked Questions + +## How can I identify my version of IoTDB? + +There are several ways to identify the version of IoTDB that you are using: + +* Launch IoTDB's Command Line Interface: + +``` +> ./start-client.sh -p 6667 -pw root -u root -h localhost + _____ _________ ______ ______ +|_ _| | _ _ ||_ _ `.|_ _ \ + | | .--.|_/ | | \_| | | `. \ | |_) | + | | / .'`\ \ | | | | | | | __'. + _| |_| \__. | _| |_ _| |_.' /_| |__) | +|_____|'.__.' |_____| |______.'|_______/ version 0.7.0 +``` + +* Check pom.xml file: + +``` +0.7.0 +``` + +* Use JDBC API: + +``` +String iotdbVersion = tsfileDatabaseMetadata.getDatabaseProductVersion(); +``` + +## Where can I find IoTDB logs? + +By default settings, the logs are stored under ```IOTDB_HOME/iotdb/logs```. You can change log level and storage path by configuring ```logback.xml``` under ```IOTDB_HOME/iotdb/conf```. ```IOTDB_HOME``` is the root path of IoTDB project. + +## Where can I find IoTDB data files? + +By default settings, the data files (including tsfile, metadata, and WAL files) are stored under ```IOTDB_HOME/iotdb/data```. + +## How do I know how many time series are stored in IoTDB? + +Use IoTDB's Command Line Interface: + +``` +IoTDB> show timeseries root.* +``` + +In the result, there will be a statement shows `Total timeseries number`, this number is the timeseries number in IoTDB. + +If you are using Linux, you can use the following shell command: + +``` +> grep "0,root" IOTDB_HOME/iotdb/data/system/schema/mlog.txt | wc -l +> 6 +``` + +## Can I use Hadoop and Spark to read TsFile in IoTDB? + +Yes. IoTDB has intense integration with Open Source Ecosystem. IoTDB supports [Hadoop](https://github.com/apache/incubator-iotdb/tree/master/hadoop), [Spark](https://github.com/apache/incubator-iotdb/tree/master/spark) and [Grafana](https://github.com/apache/incubator-iotdb/tree/master/grafana) visualization tool. + +## How does IoTDB handle duplicate points? + +A data point is uniquely identified by a full time series path (e.g. ```root.vehicle.d0.s0```) and timestamp. If you submit a new point with the same path and timestamp as an existing point, + +## How can I tell what type of the specific timeseries? + +Use ```SHOW TIMESERIES ``` SQL in IoTDB's Command Line Interface: + +For example, if you want to know the type of all timeseries, the \ should be `root`. The statement will be: + +``` +IoTDB> show timeseries root +``` + +If you want to query specific sensor, you can replace the \ with the sensor name. For example: + +``` +IoTDB> show timeseries root.fit.d1.s1 +``` + +Otherwise, you can also use wildcard in timeseries path: + +``` +IoTDB> show timeseries root.fit.d1.* +``` + +## How can I change IoTDB's CLI time display format? + +The default IoTDB's CLI time display format is human readable (e.g. ```1970-01-01T08:00:00.001```), if you want to display time in timestamp type or other readable format, add parameter ```-disableIS08601``` in start command: + +``` +>sh IOTDB_HOME/iotdb/bin/start-client.sh -h 10.129.187.21 -p 6667 -u root -pw root -disableIS08601 +``` \ No newline at end of file diff --git a/docs/Documentation/OtherMaterial-Examples.md b/docs/Documentation/OtherMaterial-Examples.md new file mode 100644 index 0000000000000..a1563278d44b7 --- /dev/null +++ b/docs/Documentation/OtherMaterial-Examples.md @@ -0,0 +1,63 @@ +# IoTDB Examples + +These examples give a quick overview of the IoTDB JDBC. IoTDB offers standard JDBC for users to interact with IoTDB, other language versions are comming soon. + +To use IoTDB, you need to set storage group (detail concept about storage group, please view our documentations) for your timeseries. Then you need to create specific timeseries((detail concept about storage group, please view our documentations)) according to its data type, name, etc. After that, inserting and query data is allowed. In this page, we will show an basic example using IoTDB JDBC. + +## IoTDB Hello World + +``` JAVA +/** + * The class is to show how to write and read date from IoTDB through JDBC + */ +package com.tsinghua.iotdb.demo; + +import java.sql.*; +import java.text.SimpleDateFormat; +import java.util.Date; + +public class IotdbHelloWorld { + + public static void main(String[] args) throws SQLException, ClassNotFoundException { + Connection connection = null; + Statement statement = null; + try { + + // 1. load JDBC driver of IoTDB + Class.forName("org.apache.iotdb.iotdb.jdbc.IoTDBDriver"); + // 2. DriverManager connect to IoTDB + connection = DriverManager.getConnection("jdbc:iotdb://localhost:6667/", "root", "root"); + // 3. Create statement + statement = connection.createStatement(); + // 4. Set storage group + statement.execute("set storage group to root.vehicle.sensor"); + // 5. Create timeseries + statement.execute("CREATE TIMESERIES root.vehicle.sensor.sensor0 WITH DATATYPE=DOUBLE, ENCODING=PLAIN"); + // 6. Insert data to IoTDB + statement.execute("INSERT INTO root.vehicle.sensor(timestamp, sensor0) VALUES (2018/10/24 19:33:00, 142)"); + // 7. Query data + String sql = "select * from root.vehicle.sensor"; + String path = "root.vehicle.sensor.sensor0"; + boolean hasResultSet = statement.execute(sql); + SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSS"); + if (hasResultSet) { + ResultSet res = statement.getResultSet(); + System.out.println(" Time" + "|" + path); + while (res.next()) { + long time = Long.parseLong(res.getString("Time")); + String dateTime = dateFormat.format(new Date(time)); + System.out.println(dateTime + " | " + res.getString(path)); + } + res.close(); + } + } + finally { + // 8. Close + if (statement != null) statement.close(); + if (connection != null) connection.close(); + } + } +} + + +``` diff --git a/docs/Documentation/OtherMaterial-Reference.md b/docs/Documentation/OtherMaterial-Reference.md new file mode 100644 index 0000000000000..86ae366c21bec --- /dev/null +++ b/docs/Documentation/OtherMaterial-Reference.md @@ -0,0 +1,9 @@ +# Research Papers + +Apache IoTDB started at Tsinghua University, School of Software. IoTDB is a database for managing large amount of time series data with columnar storage, data encoding, pre-computation, and index techniques. It has SQL-like interface to write millions of data points per second per node and is optimized to get query results in few seconds over trillions of data points. It can also be easily integrated with Apache Hadoop MapReduce and Apache Spark for analytics. + +The research papers related are in the following: + +* [PISA: An Index for Aggregating Big Time Series Data](https://dl.acm.org/citation.cfm?id=2983775&dl=ACM&coll=DL), Xiangdong Huang and Jianmin Wang and Raymond K. Wong and Jinrui Zhang and Chen Wang. CIKM 2016. +* [Matching Consecutive Subpatterns over Streaming Time Series](https://link.springer.com/chapter/10.1007/978-3-319-96893-3_8), Rong Kang and Chen Wang and Peng Wang and Yuting Ding and Jianmin Wang. APWeb/WAIM 2018. +* [KV-match: A Subsequence Matching Approach Supporting Normalization and Time Warping](https://www.semanticscholar.org/paper/KV-match%3A-A-Subsequence-Matching-Approach-and-Time-Wu-Wang/9ed84cb15b7e5052028fc5b4d667248713ac8592), Jiaye Wu and Peng Wang and Chen Wang and Wei Wang and Jianmin Wang. ICDE 2019. diff --git a/docs/Documentation/OtherMaterial-ReleaseNotesV0.7.0.md b/docs/Documentation/OtherMaterial-ReleaseNotesV0.7.0.md new file mode 100644 index 0000000000000..03b55ba2a66af --- /dev/null +++ b/docs/Documentation/OtherMaterial-ReleaseNotesV0.7.0.md @@ -0,0 +1,38 @@ + + +- [v0.7.0 Release Notes](#v070-release-notes) + - [Features](#features) + - [IoTDB](#iotdb) + - [IoTDB-Transfer-Tool](#iotdb-transfer-tool) + - [Bugfixes](#bugfixes) + - [IoTDB](#iotdb-1) + - [System Organization](#system-organization) + + +### v0.7.0 Release Notes + +Add postback tools, multi-path data storage mechanism, ```SHOW TIMESERIES / STORAGE GROUP``` SQL extended expressions, and other new features. Fix several issues in version 0.6.0. Improve system stability. + +#### Features + +##### IoTDB + +* Add ```Show Storage Group``` SQL statement, support for displaying storage groups. +* Enhance ```Show Timeseries``` SQL, support for displaying time series information under different prefix paths. +* Add multi-path data storage mechanism for distributed storage, allowing different data files (write ahead logs, metadata files, etc.) to be stored in different paths. +* Add data directory configuration which allows data files to be stored in different paths, facilitating the use of multiple disks to store data files. + +##### IoTDB-Transfer-Tool + +* Added IoTDB data postback module to provide users with end-to-cloud timed data file postback function. + +#### Bugfixes +##### IoTDB +* Fix the problem that the IoTDB shutdown script does not work +* Fix the problem that the IoTDB installation path does not support spaces in Windows environment. +* Fix the problem that the system cannot be restarted after merging Overflow data +* Fix the problem that the permission module missing the ALL keyword +* Fixed an issue that quotation marks in strings were not supported when querying TEXT type data + +#### System Organization +* Further improve system stability \ No newline at end of file diff --git a/docs/Documentation/OtherMaterial-Sample Data.md b/docs/Documentation/OtherMaterial-Sample Data.md new file mode 100644 index 0000000000000..2040fab4786e0 --- /dev/null +++ b/docs/Documentation/OtherMaterial-Sample Data.md @@ -0,0 +1,46 @@ + + +- [Material: Sample Data](#material-sample-data) + - [Scenario Description](#scenario-description) + - [Sample Data](#sample-data) + + +# Material: Sample Data + +### Scenario Description + +A power department needs to monitor the operation of various power plants under its jurisdiction. By collecting real-time monitoring data sent by various types of sensors deployed by various power plants, the power department can monitor the real-time operation of the power plants and understand the trend of data changes, etc. IoTDB has the characteristics of high write throughput and rich query functions, which can provide effective support for the needs of the power department. + +The real-time data needed to be monitored involves multiple attribute layers: + +* **Power Generation Group**: The data belongs to nearly ten power generation groups, and the name codes are ln, sgcc, etc. + +* **Power Plant**: The power generation group has more than 10 kinds of electric fields, such as wind farm, hydropower plant and photovoltaic power plant, numbered as wf01, wf02, wf03 and so on. + +* **Device**: Each power plant has about 5,000 kinds of power generation devices such as wind turbines and photovoltaic panels, numbered as wt01, wt02 and so on. + +* **Sensor**: For different devices, there are 10 to 1000 sensors monitoring different states of the devices , such as power supply status sensor (named status), temperature sensor (named temperature), hardware version sensor (named hardware), etc. + +It is worth noting that prior to the use of IoTDB by the power sector, some historical monitoring data of various power plants needs to be imported into the IoTDB system (we will introduce the import method in [Import Historical Data](需要连接到具体的网页链接Chapter3ImportHistoricalData)). Simutaneouly, the real-time monitoring data is continuously flowing into the IoTDB system (we will introduce the import method in Section 3.3.2 of this chapter). + +### Sample Data +Based on the description of the above sample scenarios, we provide you with a simplified sample data. The data download address is http://tsfile.org/download. + +The basic information of the data is shown in Table below. + +
**Table: The basic information of the data** + +|Name |Data Type| Coding | Meaning | +|:---|:---|:---|:---| +|root.ln.wf01.wt01.status| Boolean|PLAIN| the power supply status of ln group wf01 plant wt01 device | +|root.ln.wf01.wt01.temperature |Float|RLE| the temperature of ln group wf01 plant wt01 device| +|root.ln.wf02.wt02.hardware |Text|PLAIN| the hardware version of ln group wf02 plant wt02 device| +|root.ln.wf02.wt02.status |Boolean|PLAIN| the power supply status of ln group wf02 plant wt02 device| +|root.sgcc.wf03.wt01.status|Boolean|PLAIN| the power supply status of sgcc group wf03 plant wt01 device| +|root.sgcc.wf03.wt01.temperature |Float|RLE| the temperature of sgcc group wf03 plant wt01 device| + +
+ +The time span of this data is from 10:00 on November 1, 2017 to 12:00 on November 2, 2017. The frequency at which data is generated is two minutes each. + +In [Data Model Selection and Creation](Chapter3DataModelSelectionandCreation), we will show how to apply IoTDB's data model rules to construct the data model shown above. In [Import Historical Data](Chapter3ImportHistoricalData), we will introduce you to the method of importing historical data, and in [Import Real-time Data](Chapter3ImportReal-timeData), we will introduce you to the method of accessing real-time data. In [Data Query](Chapter3DataQuery), we will introduce you to three typical data query patterns using IoTDB. In [Data Maintenance](Chapter3DataMaintenance), we will show you how to update and delete data using IoTDB. \ No newline at end of file diff --git a/docs/Documentation/OtherMaterial-Sample Data.txt b/docs/Documentation/OtherMaterial-Sample Data.txt new file mode 100644 index 0000000000000..3ac8b0c8b8279 --- /dev/null +++ b/docs/Documentation/OtherMaterial-Sample Data.txt @@ -0,0 +1,60488 @@ +set storage group to root.ln +create timeseries root.ln.wf01.wt01.status with datatype=BOOLEAN,encoding=PLAIN +insert into root.ln.wf01.wt01(timestamp,status) values(1509465600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509465660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509465720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509465780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509465840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509465900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509465960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509466020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509466080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509466140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509466200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509466260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509466320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509466380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509466440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509466500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509466560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509466620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509466680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509466740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509466800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509466860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509466920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509466980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509467040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509467100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509467160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509467220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509467280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509467340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509467400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509467460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509467520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509467580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509467640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509467700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509467760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509467820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509467880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509467940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509468000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509468060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509468120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509468180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509468240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509468300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509468360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509468420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509468480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509468540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509468600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509468660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509468720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509468780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509468840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509468900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509468960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509469020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509469080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509469140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509469200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509469260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509469320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509469380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509469440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509469500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509469560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509469620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509469680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509469740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509469800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509469860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509469920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509469980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509470040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509470100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509470160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509470220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509470280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509470340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509470400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509470460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509470520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509470580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509470640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509470700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509470760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509470820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509470880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509470940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509471000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509471060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509471120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509471180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509471240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509471300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509471360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509471420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509471480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509471540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509471600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509471660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509471720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509471780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509471840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509471900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509471960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509472020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509472080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509472140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509472200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509472260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509472320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509472380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509472440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509472500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509472560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509472620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509472680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509472740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509472800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509472860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509472920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509472980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509473040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509473100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509473160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509473220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509473280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509473340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509473400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509473460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509473520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509473580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509473640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509473700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509473760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509473820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509473880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509473940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509474000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509474060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509474120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509474180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509474240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509474300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509474360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509474420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509474480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509474540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509474600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509474660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509474720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509474780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509474840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509474900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509474960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509475020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509475080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509475140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509475200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509475260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509475320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509475380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509475440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509475500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509475560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509475620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509475680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509475740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509475800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509475860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509475920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509475980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509476040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509476100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509476160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509476220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509476280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509476340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509476400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509476460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509476520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509476580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509476640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509476700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509476760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509476820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509476880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509476940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509477000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509477060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509477120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509477180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509477240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509477300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509477360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509477420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509477480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509477540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509477600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509477660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509477720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509477780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509477840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509477900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509477960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509478020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509478080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509478140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509478200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509478260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509478320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509478380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509478440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509478500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509478560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509478620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509478680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509478740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509478800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509478860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509478920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509478980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509479040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509479100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509479160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509479220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509479280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509479340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509479400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509479460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509479520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509479580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509479640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509479700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509479760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509479820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509479880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509479940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509480000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509480060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509480120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509480180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509480240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509480300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509480360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509480420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509480480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509480540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509480600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509480660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509480720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509480780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509480840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509480900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509480960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509481020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509481080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509481140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509481200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509481260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509481320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509481380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509481440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509481500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509481560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509481620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509481680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509481740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509481800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509481860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509481920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509481980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509482040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509482100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509482160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509482220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509482280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509482340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509482400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509482460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509482520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509482580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509482640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509482700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509482760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509482820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509482880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509482940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509483000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509483060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509483120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509483180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509483240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509483300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509483360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509483420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509483480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509483540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509483600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509483660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509483720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509483780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509483840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509483900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509483960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509484020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509484080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509484140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509484200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509484260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509484320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509484380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509484440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509484500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509484560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509484620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509484680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509484740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509484800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509484860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509484920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509484980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509485040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509485100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509485160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509485220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509485280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509485340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509485400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509485460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509485520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509485580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509485640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509485700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509485760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509485820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509485880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509485940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509486000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509486060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509486120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509486180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509486240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509486300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509486360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509486420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509486480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509486540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509486600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509486660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509486720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509486780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509486840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509486900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509486960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509487020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509487080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509487140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509487200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509487260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509487320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509487380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509487440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509487500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509487560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509487620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509487680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509487740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509487800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509487860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509487920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509487980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509488040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509488100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509488160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509488220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509488280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509488340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509488400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509488460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509488520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509488580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509488640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509488700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509488760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509488820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509488880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509488940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509489000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509489060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509489120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509489180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509489240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509489300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509489360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509489420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509489480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509489540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509489600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509489660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509489720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509489780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509489840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509489900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509489960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509490020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509490080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509490140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509490200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509490260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509490320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509490380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509490440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509490500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509490560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509490620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509490680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509490740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509490800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509490860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509490920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509490980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509491040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509491100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509491160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509491220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509491280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509491340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509491400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509491460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509491520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509491580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509491640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509491700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509491760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509491820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509491880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509491940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509492000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509492060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509492120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509492180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509492240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509492300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509492360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509492420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509492480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509492540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509492600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509492660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509492720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509492780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509492840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509492900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509492960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509493020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509493080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509493140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509493200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509493260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509493320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509493380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509493440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509493500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509493560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509493620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509493680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509493740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509493800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509493860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509493920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509493980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509494040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509494100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509494160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509494220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509494280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509494340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509494400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509494460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509494520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509494580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509494640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509494700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509494760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509494820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509494880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509494940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509495000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509495060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509495120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509495180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509495240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509495300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509495360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509495420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509495480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509495540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509495600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509495660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509495720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509495780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509495840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509495900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509495960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509496020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509496080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509496140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509496200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509496260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509496320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509496380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509496440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509496500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509496560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509496620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509496680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509496740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509496800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509496860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509496920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509496980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509497040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509497100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509497160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509497220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509497280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509497340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509497400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509497460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509497520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509497580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509497640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509497700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509497760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509497820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509497880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509497940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509498000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509498060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509498120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509498180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509498240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509498300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509498360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509498420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509498480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509498540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509498600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509498660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509498720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509498780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509498840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509498900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509498960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509499020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509499080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509499140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509499200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509499260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509499320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509499380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509499440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509499500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509499560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509499620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509499680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509499740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509499800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509499860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509499920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509499980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509500040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509500100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509500160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509500220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509500280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509500340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509500400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509500460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509500520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509500580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509500640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509500700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509500760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509500820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509500880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509500940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509501000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509501060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509501120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509501180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509501240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509501300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509501360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509501420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509501480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509501540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509501600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509501660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509501720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509501780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509501840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509501900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509501960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509502020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509502080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509502140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509502200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509502260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509502320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509502380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509502440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509502500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509502560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509502620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509502680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509502740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509502800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509502860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509502920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509502980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509503040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509503100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509503160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509503220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509503280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509503340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509503400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509503460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509503520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509503580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509503640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509503700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509503760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509503820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509503880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509503940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509504000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509504060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509504120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509504180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509504240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509504300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509504360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509504420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509504480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509504540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509504600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509504660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509504720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509504780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509504840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509504900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509504960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509505020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509505080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509505140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509505200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509505260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509505320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509505380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509505440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509505500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509505560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509505620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509505680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509505740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509505800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509505860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509505920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509505980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509506040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509506100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509506160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509506220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509506280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509506340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509506400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509506460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509506520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509506580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509506640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509506700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509506760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509506820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509506880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509506940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509507000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509507060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509507120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509507180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509507240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509507300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509507360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509507420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509507480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509507540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509507600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509507660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509507720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509507780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509507840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509507900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509507960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509508020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509508080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509508140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509508200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509508260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509508320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509508380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509508440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509508500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509508560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509508620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509508680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509508740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509508800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509508860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509508920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509508980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509509040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509509100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509509160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509509220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509509280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509509340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509509400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509509460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509509520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509509580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509509640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509509700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509509760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509509820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509509880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509509940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509510000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509510060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509510120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509510180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509510240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509510300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509510360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509510420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509510480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509510540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509510600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509510660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509510720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509510780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509510840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509510900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509510960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509511020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509511080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509511140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509511200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509511260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509511320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509511380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509511440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509511500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509511560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509511620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509511680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509511740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509511800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509511860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509511920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509511980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509512040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509512100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509512160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509512220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509512280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509512340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509512400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509512460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509512520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509512580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509512640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509512700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509512760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509512820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509512880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509512940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509513000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509513060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509513120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509513180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509513240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509513300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509513360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509513420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509513480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509513540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509513600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509513660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509513720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509513780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509513840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509513900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509513960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509514020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509514080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509514140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509514200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509514260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509514320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509514380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509514440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509514500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509514560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509514620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509514680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509514740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509514800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509514860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509514920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509514980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509515040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509515100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509515160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509515220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509515280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509515340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509515400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509515460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509515520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509515580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509515640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509515700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509515760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509515820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509515880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509515940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509516000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509516060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509516120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509516180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509516240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509516300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509516360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509516420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509516480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509516540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509516600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509516660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509516720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509516780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509516840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509516900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509516960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509517020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509517080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509517140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509517200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509517260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509517320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509517380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509517440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509517500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509517560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509517620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509517680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509517740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509517800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509517860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509517920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509517980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509518040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509518100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509518160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509518220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509518280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509518340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509518400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509518460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509518520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509518580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509518640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509518700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509518760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509518820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509518880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509518940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509519000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509519060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509519120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509519180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509519240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509519300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509519360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509519420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509519480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509519540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509519600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509519660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509519720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509519780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509519840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509519900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509519960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509520020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509520080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509520140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509520200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509520260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509520320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509520380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509520440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509520500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509520560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509520620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509520680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509520740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509520800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509520860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509520920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509520980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509521040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509521100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509521160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509521220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509521280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509521340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509521400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509521460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509521520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509521580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509521640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509521700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509521760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509521820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509521880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509521940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509522000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509522060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509522120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509522180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509522240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509522300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509522360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509522420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509522480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509522540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509522600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509522660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509522720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509522780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509522840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509522900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509522960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509523020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509523080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509523140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509523200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509523260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509523320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509523380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509523440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509523500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509523560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509523620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509523680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509523740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509523800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509523860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509523920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509523980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509524040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509524100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509524160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509524220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509524280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509524340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509524400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509524460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509524520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509524580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509524640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509524700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509524760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509524820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509524880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509524940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509525000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509525060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509525120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509525180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509525240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509525300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509525360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509525420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509525480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509525540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509525600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509525660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509525720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509525780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509525840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509525900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509525960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509526020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509526080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509526140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509526200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509526260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509526320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509526380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509526440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509526500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509526560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509526620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509526680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509526740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509526800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509526860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509526920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509526980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509527040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509527100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509527160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509527220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509527280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509527340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509527400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509527460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509527520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509527580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509527640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509527700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509527760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509527820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509527880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509527940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509528000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509528060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509528120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509528180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509528240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509528300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509528360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509528420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509528480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509528540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509528600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509528660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509528720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509528780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509528840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509528900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509528960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509529020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509529080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509529140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509529200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509529260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509529320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509529380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509529440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509529500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509529560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509529620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509529680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509529740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509529800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509529860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509529920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509529980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509530040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509530100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509530160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509530220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509530280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509530340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509530400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509530460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509530520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509530580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509530640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509530700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509530760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509530820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509530880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509530940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509531000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509531060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509531120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509531180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509531240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509531300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509531360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509531420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509531480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509531540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509531600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509531660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509531720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509531780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509531840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509531900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509531960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509532020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509532080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509532140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509532200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509532260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509532320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509532380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509532440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509532500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509532560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509532620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509532680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509532740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509532800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509532860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509532920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509532980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509533040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509533100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509533160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509533220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509533280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509533340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509533400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509533460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509533520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509533580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509533640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509533700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509533760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509533820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509533880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509533940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509534000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509534060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509534120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509534180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509534240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509534300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509534360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509534420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509534480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509534540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509534600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509534660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509534720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509534780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509534840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509534900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509534960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509535020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509535080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509535140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509535200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509535260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509535320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509535380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509535440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509535500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509535560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509535620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509535680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509535740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509535800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509535860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509535920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509535980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509536040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509536100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509536160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509536220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509536280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509536340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509536400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509536460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509536520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509536580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509536640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509536700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509536760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509536820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509536880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509536940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509537000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509537060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509537120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509537180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509537240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509537300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509537360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509537420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509537480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509537540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509537600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509537660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509537720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509537780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509537840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509537900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509537960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509538020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509538080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509538140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509538200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509538260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509538320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509538380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509538440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509538500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509538560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509538620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509538680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509538740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509538800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509538860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509538920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509538980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509539040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509539100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509539160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509539220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509539280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509539340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509539400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509539460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509539520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509539580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509539640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509539700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509539760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509539820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509539880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509539940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509540000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509540060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509540120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509540180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509540240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509540300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509540360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509540420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509540480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509540540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509540600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509540660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509540720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509540780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509540840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509540900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509540960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509541020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509541080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509541140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509541200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509541260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509541320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509541380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509541440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509541500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509541560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509541620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509541680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509541740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509541800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509541860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509541920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509541980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509542040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509542100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509542160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509542220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509542280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509542340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509542400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509542460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509542520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509542580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509542640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509542700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509542760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509542820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509542880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509542940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509543000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509543060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509543120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509543180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509543240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509543300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509543360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509543420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509543480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509543540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509543600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509543660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509543720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509543780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509543840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509543900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509543960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509544020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509544080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509544140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509544200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509544260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509544320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509544380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509544440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509544500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509544560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509544620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509544680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509544740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509544800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509544860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509544920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509544980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509545040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509545100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509545160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509545220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509545280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509545340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509545400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509545460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509545520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509545580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509545640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509545700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509545760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509545820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509545880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509545940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509546000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509546060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509546120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509546180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509546240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509546300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509546360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509546420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509546480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509546540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509546600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509546660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509546720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509546780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509546840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509546900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509546960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509547020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509547080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509547140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509547200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509547260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509547320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509547380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509547440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509547500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509547560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509547620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509547680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509547740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509547800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509547860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509547920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509547980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509548040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509548100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509548160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509548220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509548280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509548340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509548400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509548460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509548520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509548580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509548640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509548700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509548760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509548820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509548880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509548940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509549000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509549060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509549120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509549180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509549240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509549300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509549360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509549420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509549480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509549540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509549600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509549660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509549720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509549780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509549840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509549900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509549960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509550020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509550080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509550140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509550200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509550260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509550320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509550380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509550440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509550500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509550560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509550620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509550680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509550740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509550800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509550860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509550920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509550980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509551040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509551100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509551160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509551220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509551280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509551340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509551400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509551460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509551520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509551580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509551640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509551700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509551760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509551820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509551880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509551940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509552000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509552060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509552120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509552180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509552240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509552300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509552360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509552420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509552480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509552540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509552600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509552660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509552720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509552780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509552840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509552900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509552960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509553020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509553080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509553140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509553200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509553260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509553320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509553380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509553440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509553500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509553560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509553620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509553680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509553740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509553800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509553860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509553920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509553980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509554040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509554100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509554160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509554220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509554280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509554340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509554400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509554460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509554520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509554580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509554640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509554700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509554760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509554820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509554880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509554940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509555000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509555060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509555120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509555180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509555240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509555300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509555360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509555420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509555480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509555540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509555600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509555660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509555720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509555780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509555840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509555900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509555960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509556020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509556080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509556140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509556200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509556260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509556320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509556380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509556440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509556500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509556560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509556620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509556680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509556740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509556800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509556860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509556920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509556980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509557040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509557100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509557160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509557220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509557280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509557340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509557400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509557460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509557520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509557580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509557640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509557700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509557760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509557820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509557880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509557940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509558000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509558060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509558120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509558180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509558240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509558300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509558360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509558420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509558480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509558540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509558600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509558660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509558720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509558780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509558840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509558900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509558960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509559020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509559080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509559140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509559200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509559260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509559320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509559380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509559440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509559500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509559560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509559620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509559680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509559740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509559800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509559860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509559920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509559980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509560040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509560100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509560160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509560220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509560280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509560340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509560400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509560460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509560520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509560580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509560640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509560700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509560760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509560820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509560880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509560940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509561000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509561060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509561120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509561180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509561240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509561300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509561360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509561420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509561480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509561540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509561600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509561660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509561720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509561780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509561840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509561900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509561960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509562020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509562080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509562140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509562200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509562260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509562320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509562380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509562440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509562500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509562560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509562620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509562680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509562740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509562800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509562860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509562920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509562980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509563040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509563100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509563160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509563220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509563280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509563340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509563400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509563460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509563520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509563580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509563640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509563700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509563760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509563820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509563880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509563940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509564000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509564060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509564120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509564180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509564240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509564300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509564360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509564420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509564480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509564540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509564600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509564660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509564720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509564780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509564840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509564900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509564960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509565020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509565080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509565140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509565200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509565260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509565320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509565380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509565440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509565500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509565560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509565620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509565680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509565740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509565800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509565860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509565920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509565980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509566040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509566100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509566160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509566220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509566280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509566340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509566400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509566460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509566520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509566580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509566640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509566700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509566760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509566820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509566880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509566940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509567000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509567060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509567120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509567180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509567240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509567300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509567360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509567420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509567480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509567540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509567600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509567660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509567720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509567780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509567840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509567900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509567960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509568020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509568080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509568140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509568200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509568260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509568320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509568380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509568440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509568500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509568560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509568620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509568680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509568740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509568800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509568860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509568920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509568980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509569040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509569100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509569160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509569220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509569280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509569340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509569400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509569460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509569520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509569580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509569640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509569700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509569760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509569820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509569880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509569940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509570000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509570060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509570120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509570180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509570240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509570300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509570360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509570420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509570480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509570540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509570600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509570660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509570720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509570780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509570840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509570900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509570960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509571020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509571080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509571140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509571200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509571260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509571320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509571380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509571440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509571500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509571560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509571620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509571680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509571740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509571800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509571860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509571920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509571980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509572040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509572100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509572160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509572220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509572280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509572340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509572400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509572460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509572520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509572580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509572640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509572700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509572760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509572820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509572880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509572940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509573000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509573060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509573120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509573180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509573240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509573300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509573360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509573420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509573480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509573540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509573600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509573660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509573720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509573780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509573840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509573900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509573960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509574020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509574080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509574140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509574200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509574260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509574320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509574380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509574440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509574500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509574560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509574620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509574680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509574740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509574800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509574860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509574920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509574980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509575040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509575100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509575160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509575220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509575280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509575340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509575400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509575460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509575520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509575580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509575640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509575700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509575760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509575820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509575880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509575940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509576000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509576060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509576120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509576180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509576240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509576300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509576360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509576420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509576480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509576540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509576600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509576660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509576720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509576780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509576840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509576900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509576960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509577020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509577080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509577140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509577200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509577260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509577320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509577380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509577440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509577500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509577560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509577620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509577680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509577740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509577800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509577860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509577920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509577980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509578040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509578100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509578160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509578220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509578280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509578340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509578400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509578460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509578520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509578580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509578640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509578700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509578760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509578820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509578880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509578940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509579000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509579060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509579120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509579180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509579240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509579300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509579360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509579420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509579480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509579540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509579600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509579660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509579720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509579780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509579840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509579900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509579960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509580020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509580080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509580140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509580200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509580260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509580320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509580380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509580440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509580500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509580560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509580620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509580680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509580740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509580800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509580860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509580920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509580980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509581040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509581100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509581160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509581220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509581280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509581340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509581400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509581460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509581520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509581580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509581640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509581700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509581760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509581820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509581880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509581940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509582000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509582060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509582120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509582180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509582240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509582300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509582360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509582420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509582480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509582540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509582600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509582660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509582720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509582780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509582840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509582900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509582960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509583020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509583080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509583140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509583200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509583260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509583320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509583380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509583440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509583500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509583560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509583620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509583680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509583740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509583800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509583860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509583920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509583980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509584040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509584100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509584160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509584220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509584280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509584340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509584400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509584460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509584520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509584580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509584640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509584700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509584760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509584820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509584880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509584940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509585000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509585060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509585120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509585180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509585240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509585300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509585360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509585420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509585480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509585540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509585600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509585660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509585720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509585780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509585840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509585900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509585960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509586020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509586080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509586140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509586200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509586260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509586320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509586380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509586440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509586500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509586560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509586620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509586680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509586740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509586800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509586860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509586920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509586980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509587040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509587100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509587160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509587220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509587280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509587340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509587400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509587460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509587520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509587580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509587640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509587700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509587760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509587820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509587880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509587940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509588000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509588060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509588120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509588180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509588240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509588300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509588360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509588420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509588480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509588540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509588600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509588660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509588720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509588780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509588840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509588900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509588960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509589020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509589080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509589140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509589200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509589260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509589320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509589380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509589440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509589500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509589560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509589620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509589680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509589740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509589800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509589860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509589920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509589980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509590040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509590100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509590160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509590220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509590280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509590340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509590400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509590460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509590520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509590580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509590640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509590700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509590760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509590820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509590880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509590940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509591000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509591060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509591120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509591180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509591240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509591300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509591360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509591420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509591480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509591540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509591600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509591660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509591720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509591780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509591840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509591900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509591960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509592020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509592080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509592140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509592200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509592260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509592320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509592380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509592440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509592500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509592560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509592620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509592680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509592740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509592800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509592860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509592920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509592980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509593040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509593100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509593160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509593220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509593280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509593340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509593400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509593460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509593520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509593580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509593640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509593700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509593760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509593820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509593880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509593940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509594000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509594060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509594120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509594180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509594240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509594300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509594360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509594420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509594480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509594540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509594600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509594660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509594720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509594780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509594840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509594900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509594960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509595020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509595080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509595140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509595200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509595260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509595320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509595380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509595440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509595500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509595560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509595620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509595680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509595740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509595800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509595860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509595920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509595980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509596040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509596100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509596160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509596220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509596280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509596340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509596400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509596460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509596520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509596580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509596640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509596700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509596760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509596820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509596880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509596940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509597000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509597060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509597120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509597180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509597240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509597300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509597360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509597420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509597480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509597540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509597600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509597660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509597720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509597780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509597840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509597900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509597960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509598020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509598080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509598140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509598200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509598260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509598320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509598380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509598440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509598500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509598560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509598620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509598680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509598740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509598800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509598860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509598920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509598980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509599040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509599100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509599160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509599220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509599280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509599340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509599400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509599460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509599520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509599580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509599640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509599700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509599760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509599820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509599880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509599940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509600000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509600060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509600120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509600180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509600240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509600300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509600360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509600420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509600480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509600540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509600600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509600660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509600720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509600780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509600840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509600900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509600960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509601020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509601080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509601140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509601200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509601260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509601320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509601380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509601440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509601500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509601560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509601620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509601680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509601740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509601800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509601860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509601920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509601980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509602040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509602100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509602160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509602220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509602280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509602340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509602400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509602460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509602520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509602580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509602640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509602700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509602760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509602820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509602880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509602940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509603000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509603060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509603120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509603180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509603240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509603300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509603360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509603420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509603480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509603540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509603600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509603660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509603720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509603780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509603840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509603900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509603960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509604020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509604080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509604140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509604200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509604260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509604320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509604380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509604440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509604500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509604560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509604620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509604680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509604740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509604800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509604860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509604920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509604980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509605040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509605100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509605160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509605220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509605280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509605340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509605400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509605460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509605520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509605580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509605640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509605700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509605760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509605820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509605880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509605940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509606000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509606060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509606120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509606180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509606240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509606300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509606360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509606420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509606480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509606540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509606600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509606660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509606720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509606780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509606840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509606900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509606960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509607020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509607080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509607140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509607200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509607260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509607320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509607380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509607440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509607500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509607560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509607620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509607680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509607740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509607800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509607860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509607920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509607980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509608040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509608100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509608160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509608220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509608280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509608340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509608400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509608460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509608520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509608580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509608640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509608700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509608760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509608820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509608880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509608940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509609000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509609060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509609120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509609180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509609240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509609300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509609360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509609420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509609480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509609540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509609600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509609660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509609720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509609780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509609840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509609900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509609960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509610020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509610080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509610140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509610200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509610260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509610320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509610380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509610440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509610500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509610560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509610620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509610680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509610740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509610800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509610860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509610920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509610980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509611040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509611100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509611160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509611220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509611280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509611340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509611400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509611460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509611520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509611580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509611640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509611700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509611760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509611820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509611880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509611940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509612000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509612060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509612120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509612180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509612240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509612300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509612360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509612420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509612480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509612540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509612600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509612660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509612720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509612780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509612840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509612900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509612960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509613020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509613080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509613140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509613200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509613260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509613320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509613380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509613440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509613500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509613560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509613620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509613680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509613740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509613800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509613860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509613920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509613980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509614040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509614100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509614160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509614220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509614280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509614340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509614400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509614460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509614520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509614580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509614640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509614700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509614760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509614820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509614880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509614940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509615000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509615060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509615120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509615180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509615240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509615300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509615360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509615420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509615480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509615540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509615600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509615660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509615720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509615780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509615840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509615900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509615960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509616020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509616080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509616140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509616200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509616260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509616320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509616380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509616440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509616500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509616560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509616620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509616680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509616740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509616800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509616860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509616920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509616980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509617040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509617100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509617160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509617220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509617280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509617340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509617400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509617460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509617520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509617580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509617640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509617700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509617760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509617820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509617880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509617940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509618000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509618060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509618120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509618180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509618240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509618300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509618360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509618420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509618480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509618540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509618600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509618660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509618720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509618780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509618840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509618900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509618960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509619020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509619080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509619140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509619200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509619260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509619320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509619380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509619440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509619500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509619560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509619620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509619680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509619740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509619800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509619860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509619920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509619980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509620040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509620100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509620160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509620220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509620280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509620340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509620400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509620460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509620520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509620580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509620640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509620700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509620760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509620820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509620880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509620940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509621000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509621060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509621120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509621180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509621240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509621300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509621360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509621420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509621480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509621540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509621600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509621660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509621720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509621780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509621840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509621900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509621960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509622020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509622080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509622140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509622200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509622260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509622320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509622380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509622440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509622500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509622560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509622620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509622680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509622740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509622800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509622860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509622920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509622980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509623040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509623100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509623160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509623220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509623280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509623340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509623400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509623460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509623520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509623580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509623640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509623700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509623760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509623820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509623880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509623940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509624000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509624060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509624120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509624180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509624240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509624300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509624360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509624420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509624480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509624540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509624600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509624660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509624720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509624780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509624840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509624900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509624960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509625020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509625080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509625140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509625200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509625260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509625320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509625380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509625440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509625500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509625560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509625620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509625680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509625740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509625800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509625860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509625920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509625980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509626040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509626100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509626160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509626220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509626280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509626340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509626400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509626460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509626520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509626580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509626640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509626700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509626760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509626820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509626880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509626940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509627000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509627060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509627120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509627180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509627240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509627300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509627360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509627420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509627480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509627540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509627600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509627660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509627720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509627780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509627840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509627900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509627960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509628020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509628080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509628140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509628200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509628260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509628320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509628380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509628440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509628500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509628560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509628620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509628680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509628740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509628800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509628860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509628920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509628980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509629040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509629100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509629160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509629220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509629280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509629340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509629400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509629460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509629520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509629580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509629640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509629700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509629760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509629820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509629880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509629940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509630000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509630060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509630120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509630180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509630240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509630300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509630360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509630420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509630480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509630540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509630600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509630660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509630720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509630780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509630840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509630900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509630960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509631020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509631080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509631140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509631200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509631260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509631320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509631380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509631440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509631500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509631560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509631620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509631680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509631740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509631800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509631860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509631920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509631980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509632040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509632100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509632160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509632220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509632280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509632340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509632400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509632460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509632520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509632580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509632640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509632700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509632760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509632820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509632880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509632940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509633000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509633060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509633120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509633180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509633240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509633300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509633360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509633420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509633480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509633540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509633600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509633660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509633720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509633780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509633840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509633900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509633960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509634020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509634080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509634140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509634200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509634260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509634320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509634380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509634440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509634500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509634560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509634620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509634680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509634740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509634800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509634860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509634920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509634980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509635040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509635100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509635160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509635220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509635280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509635340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509635400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509635460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509635520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509635580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509635640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509635700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509635760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509635820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509635880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509635940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509636000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509636060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509636120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509636180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509636240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509636300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509636360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509636420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509636480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509636540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509636600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509636660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509636720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509636780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509636840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509636900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509636960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509637020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509637080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509637140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509637200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509637260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509637320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509637380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509637440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509637500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509637560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509637620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509637680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509637740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509637800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509637860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509637920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509637980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509638040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509638100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509638160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509638220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509638280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509638340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509638400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509638460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509638520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509638580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509638640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509638700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509638760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509638820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509638880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509638940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509639000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509639060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509639120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509639180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509639240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509639300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509639360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509639420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509639480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509639540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509639600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509639660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509639720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509639780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509639840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509639900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509639960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509640020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509640080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509640140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509640200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509640260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509640320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509640380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509640440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509640500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509640560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509640620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509640680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509640740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509640800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509640860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509640920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509640980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509641040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509641100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509641160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509641220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509641280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509641340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509641400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509641460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509641520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509641580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509641640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509641700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509641760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509641820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509641880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509641940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509642000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509642060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509642120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509642180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509642240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509642300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509642360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509642420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509642480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509642540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509642600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509642660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509642720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509642780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509642840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509642900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509642960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509643020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509643080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509643140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509643200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509643260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509643320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509643380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509643440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509643500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509643560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509643620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509643680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509643740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509643800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509643860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509643920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509643980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509644040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509644100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509644160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509644220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509644280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509644340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509644400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509644460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509644520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509644580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509644640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509644700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509644760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509644820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509644880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509644940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509645000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509645060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509645120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509645180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509645240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509645300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509645360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509645420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509645480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509645540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509645600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509645660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509645720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509645780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509645840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509645900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509645960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509646020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509646080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509646140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509646200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509646260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509646320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509646380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509646440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509646500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509646560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509646620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509646680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509646740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509646800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509646860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509646920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509646980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509647040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509647100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509647160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509647220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509647280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509647340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509647400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509647460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509647520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509647580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509647640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509647700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509647760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509647820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509647880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509647940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509648000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509648060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509648120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509648180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509648240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509648300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509648360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509648420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509648480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509648540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509648600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509648660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509648720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509648780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509648840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509648900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509648960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509649020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509649080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509649140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509649200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509649260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509649320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509649380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509649440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509649500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509649560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509649620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509649680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509649740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509649800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509649860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509649920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509649980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509650040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509650100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509650160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509650220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509650280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509650340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509650400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509650460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509650520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509650580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509650640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509650700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509650760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509650820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509650880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509650940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509651000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509651060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509651120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509651180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509651240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509651300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509651360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509651420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509651480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509651540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509651600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509651660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509651720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509651780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509651840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509651900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509651960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509652020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509652080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509652140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509652200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509652260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509652320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509652380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509652440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509652500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509652560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509652620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509652680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509652740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509652800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509652860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509652920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509652980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509653040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509653100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509653160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509653220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509653280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509653340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509653400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509653460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509653520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509653580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509653640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509653700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509653760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509653820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509653880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509653940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509654000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509654060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509654120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509654180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509654240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509654300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509654360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509654420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509654480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509654540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509654600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509654660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509654720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509654780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509654840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509654900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509654960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509655020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509655080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509655140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509655200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509655260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509655320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509655380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509655440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509655500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509655560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509655620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509655680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509655740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509655800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509655860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509655920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509655980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509656040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509656100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509656160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509656220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509656280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509656340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509656400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509656460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509656520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509656580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509656640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509656700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509656760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509656820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509656880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509656940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509657000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509657060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509657120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509657180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509657240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509657300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509657360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509657420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509657480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509657540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509657600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509657660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509657720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509657780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509657840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509657900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509657960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509658020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509658080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509658140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509658200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509658260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509658320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509658380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509658440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509658500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509658560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509658620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509658680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509658740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509658800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509658860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509658920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509658980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509659040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509659100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509659160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509659220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509659280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509659340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509659400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509659460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509659520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509659580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509659640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509659700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509659760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509659820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509659880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509659940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509660000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509660060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509660120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509660180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509660240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509660300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509660360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509660420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509660480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509660540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509660600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509660660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509660720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509660780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509660840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509660900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509660960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509661020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509661080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509661140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509661200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509661260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509661320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509661380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509661440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509661500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509661560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509661620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509661680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509661740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509661800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509661860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509661920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509661980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509662040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509662100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509662160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509662220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509662280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509662340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509662400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509662460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509662520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509662580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509662640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509662700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509662760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509662820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509662880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509662940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509663000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509663060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509663120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509663180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509663240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509663300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509663360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509663420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509663480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509663540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509663600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509663660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509663720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509663780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509663840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509663900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509663960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509664020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509664080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509664140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509664200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509664260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509664320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509664380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509664440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509664500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509664560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509664620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509664680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509664740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509664800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509664860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509664920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509664980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509665040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509665100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509665160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509665220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509665280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509665340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509665400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509665460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509665520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509665580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509665640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509665700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509665760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509665820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509665880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509665940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509666000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509666060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509666120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509666180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509666240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509666300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509666360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509666420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509666480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509666540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509666600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509666660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509666720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509666780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509666840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509666900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509666960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509667020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509667080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509667140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509667200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509667260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509667320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509667380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509667440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509667500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509667560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509667620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509667680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509667740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509667800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509667860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509667920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509667980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509668040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509668100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509668160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509668220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509668280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509668340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509668400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509668460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509668520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509668580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509668640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509668700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509668760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509668820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509668880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509668940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509669000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509669060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509669120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509669180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509669240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509669300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509669360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509669420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509669480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509669540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509669600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509669660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509669720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509669780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509669840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509669900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509669960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509670020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509670080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509670140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509670200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509670260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509670320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509670380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509670440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509670500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509670560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509670620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509670680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509670740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509670800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509670860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509670920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509670980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509671040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509671100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509671160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509671220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509671280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509671340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509671400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509671460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509671520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509671580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509671640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509671700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509671760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509671820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509671880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509671940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509672000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509672060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509672120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509672180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509672240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509672300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509672360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509672420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509672480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509672540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509672600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509672660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509672720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509672780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509672840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509672900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509672960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509673020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509673080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509673140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509673200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509673260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509673320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509673380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509673440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509673500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509673560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509673620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509673680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509673740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509673800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509673860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509673920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509673980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509674040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509674100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509674160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509674220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509674280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509674340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509674400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509674460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509674520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509674580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509674640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509674700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509674760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509674820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509674880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509674940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509675000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509675060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509675120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509675180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509675240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509675300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509675360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509675420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509675480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509675540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509675600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509675660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509675720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509675780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509675840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509675900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509675960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509676020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509676080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509676140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509676200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509676260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509676320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509676380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509676440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509676500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509676560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509676620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509676680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509676740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509676800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509676860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509676920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509676980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509677040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509677100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509677160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509677220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509677280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509677340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509677400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509677460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509677520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509677580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509677640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509677700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509677760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509677820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509677880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509677940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509678000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509678060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509678120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509678180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509678240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509678300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509678360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509678420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509678480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509678540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509678600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509678660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509678720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509678780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509678840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509678900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509678960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509679020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509679080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509679140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509679200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509679260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509679320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509679380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509679440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509679500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509679560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509679620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509679680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509679740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509679800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509679860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509679920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509679980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509680040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509680100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509680160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509680220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509680280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509680340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509680400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509680460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509680520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509680580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509680640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509680700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509680760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509680820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509680880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509680940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509681000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509681060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509681120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509681180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509681240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509681300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509681360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509681420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509681480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509681540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509681600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509681660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509681720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509681780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509681840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509681900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509681960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509682020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509682080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509682140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509682200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509682260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509682320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509682380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509682440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509682500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509682560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509682620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509682680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509682740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509682800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509682860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509682920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509682980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509683040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509683100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509683160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509683220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509683280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509683340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509683400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509683460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509683520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509683580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509683640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509683700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509683760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509683820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509683880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509683940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509684000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509684060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509684120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509684180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509684240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509684300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509684360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509684420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509684480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509684540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509684600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509684660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509684720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509684780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509684840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509684900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509684960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509685020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509685080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509685140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509685200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509685260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509685320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509685380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509685440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509685500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509685560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509685620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509685680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509685740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509685800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509685860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509685920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509685980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509686040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509686100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509686160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509686220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509686280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509686340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509686400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509686460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509686520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509686580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509686640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509686700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509686760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509686820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509686880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509686940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509687000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509687060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509687120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509687180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509687240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509687300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509687360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509687420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509687480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509687540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509687600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509687660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509687720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509687780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509687840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509687900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509687960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509688020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509688080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509688140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509688200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509688260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509688320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509688380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509688440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509688500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509688560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509688620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509688680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509688740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509688800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509688860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509688920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509688980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509689040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509689100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509689160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509689220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509689280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509689340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509689400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509689460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509689520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509689580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509689640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509689700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509689760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509689820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509689880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509689940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509690000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509690060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509690120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509690180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509690240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509690300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509690360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509690420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509690480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509690540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509690600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509690660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509690720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509690780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509690840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509690900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509690960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509691020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509691080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509691140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509691200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509691260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509691320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509691380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509691440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509691500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509691560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509691620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509691680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509691740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509691800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509691860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509691920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509691980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509692040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509692100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509692160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509692220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509692280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509692340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509692400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509692460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509692520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509692580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509692640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509692700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509692760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509692820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509692880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509692940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509693000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509693060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509693120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509693180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509693240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509693300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509693360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509693420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509693480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509693540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509693600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509693660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509693720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509693780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509693840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509693900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509693960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509694020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509694080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509694140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509694200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509694260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509694320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509694380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509694440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509694500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509694560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509694620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509694680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509694740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509694800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509694860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509694920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509694980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509695040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509695100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509695160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509695220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509695280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509695340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509695400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509695460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509695520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509695580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509695640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509695700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509695760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509695820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509695880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509695940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509696000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509696060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509696120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509696180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509696240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509696300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509696360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509696420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509696480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509696540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509696600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509696660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509696720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509696780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509696840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509696900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509696960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509697020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509697080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509697140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509697200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509697260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509697320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509697380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509697440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509697500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509697560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509697620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509697680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509697740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509697800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509697860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509697920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509697980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509698040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509698100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509698160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509698220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509698280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509698340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509698400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509698460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509698520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509698580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509698640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509698700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509698760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509698820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509698880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509698940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509699000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509699060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509699120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509699180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509699240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509699300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509699360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509699420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509699480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509699540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509699600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509699660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509699720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509699780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509699840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509699900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509699960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509700020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509700080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509700140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509700200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509700260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509700320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509700380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509700440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509700500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509700560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509700620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509700680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509700740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509700800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509700860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509700920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509700980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509701040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509701100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509701160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509701220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509701280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509701340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509701400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509701460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509701520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509701580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509701640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509701700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509701760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509701820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509701880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509701940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509702000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509702060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509702120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509702180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509702240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509702300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509702360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509702420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509702480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509702540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509702600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509702660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509702720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509702780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509702840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509702900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509702960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509703020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509703080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509703140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509703200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509703260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509703320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509703380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509703440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509703500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509703560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509703620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509703680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509703740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509703800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509703860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509703920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509703980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509704040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509704100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509704160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509704220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509704280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509704340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509704400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509704460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509704520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509704580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509704640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509704700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509704760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509704820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509704880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509704940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509705000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509705060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509705120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509705180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509705240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509705300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509705360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509705420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509705480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509705540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509705600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509705660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509705720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509705780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509705840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509705900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509705960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509706020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509706080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509706140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509706200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509706260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509706320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509706380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509706440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509706500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509706560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509706620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509706680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509706740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509706800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509706860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509706920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509706980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509707040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509707100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509707160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509707220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509707280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509707340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509707400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509707460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509707520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509707580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509707640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509707700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509707760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509707820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509707880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509707940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509708000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509708060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509708120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509708180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509708240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509708300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509708360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509708420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509708480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509708540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509708600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509708660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509708720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509708780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509708840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509708900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509708960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509709020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509709080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509709140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509709200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509709260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509709320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509709380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509709440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509709500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509709560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509709620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509709680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509709740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509709800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509709860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509709920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509709980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509710040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509710100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509710160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509710220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509710280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509710340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509710400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509710460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509710520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509710580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509710640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509710700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509710760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509710820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509710880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509710940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509711000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509711060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509711120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509711180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509711240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509711300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509711360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509711420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509711480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509711540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509711600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509711660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509711720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509711780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509711840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509711900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509711960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509712020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509712080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509712140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509712200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509712260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509712320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509712380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509712440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509712500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509712560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509712620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509712680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509712740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509712800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509712860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509712920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509712980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509713040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509713100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509713160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509713220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509713280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509713340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509713400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509713460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509713520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509713580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509713640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509713700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509713760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509713820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509713880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509713940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509714000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509714060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509714120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509714180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509714240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509714300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509714360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509714420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509714480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509714540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509714600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509714660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509714720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509714780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509714840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509714900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509714960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509715020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509715080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509715140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509715200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509715260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509715320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509715380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509715440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509715500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509715560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509715620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509715680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509715740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509715800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509715860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509715920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509715980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509716040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509716100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509716160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509716220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509716280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509716340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509716400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509716460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509716520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509716580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509716640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509716700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509716760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509716820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509716880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509716940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509717000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509717060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509717120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509717180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509717240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509717300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509717360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509717420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509717480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509717540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509717600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509717660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509717720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509717780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509717840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509717900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509717960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509718020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509718080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509718140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509718200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509718260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509718320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509718380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509718440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509718500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509718560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509718620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509718680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509718740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509718800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509718860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509718920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509718980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509719040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509719100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509719160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509719220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509719280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509719340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509719400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509719460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509719520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509719580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509719640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509719700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509719760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509719820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509719880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509719940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509720000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509720060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509720120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509720180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509720240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509720300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509720360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509720420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509720480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509720540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509720600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509720660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509720720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509720780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509720840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509720900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509720960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509721020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509721080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509721140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509721200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509721260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509721320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509721380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509721440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509721500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509721560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509721620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509721680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509721740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509721800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509721860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509721920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509721980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509722040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509722100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509722160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509722220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509722280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509722340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509722400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509722460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509722520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509722580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509722640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509722700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509722760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509722820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509722880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509722940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509723000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509723060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509723120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509723180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509723240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509723300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509723360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509723420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509723480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509723540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509723600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509723660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509723720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509723780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509723840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509723900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509723960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509724020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509724080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509724140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509724200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509724260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509724320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509724380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509724440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509724500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509724560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509724620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509724680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509724740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509724800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509724860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509724920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509724980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509725040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509725100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509725160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509725220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509725280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509725340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509725400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509725460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509725520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509725580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509725640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509725700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509725760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509725820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509725880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509725940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509726000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509726060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509726120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509726180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509726240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509726300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509726360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509726420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509726480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509726540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509726600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509726660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509726720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509726780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509726840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509726900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509726960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509727020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509727080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509727140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509727200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509727260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509727320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509727380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509727440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509727500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509727560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509727620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509727680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509727740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509727800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509727860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509727920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509727980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509728040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509728100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509728160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509728220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509728280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509728340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509728400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509728460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509728520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509728580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509728640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509728700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509728760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509728820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509728880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509728940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509729000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509729060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509729120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509729180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509729240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509729300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509729360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509729420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509729480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509729540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509729600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509729660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509729720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509729780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509729840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509729900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509729960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509730020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509730080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509730140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509730200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509730260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509730320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509730380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509730440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509730500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509730560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509730620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509730680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509730740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509730800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509730860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509730920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509730980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509731040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509731100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509731160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509731220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509731280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509731340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509731400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509731460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509731520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509731580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509731640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509731700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509731760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509731820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509731880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509731940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509732000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509732060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509732120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509732180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509732240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509732300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509732360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509732420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509732480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509732540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509732600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509732660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509732720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509732780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509732840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509732900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509732960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509733020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509733080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509733140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509733200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509733260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509733320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509733380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509733440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509733500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509733560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509733620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509733680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509733740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509733800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509733860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509733920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509733980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509734040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509734100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509734160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509734220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509734280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509734340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509734400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509734460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509734520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509734580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509734640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509734700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509734760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509734820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509734880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509734940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509735000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509735060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509735120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509735180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509735240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509735300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509735360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509735420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509735480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509735540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509735600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509735660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509735720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509735780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509735840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509735900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509735960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509736020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509736080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509736140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509736200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509736260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509736320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509736380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509736440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509736500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509736560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509736620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509736680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509736740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509736800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509736860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509736920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509736980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509737040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509737100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509737160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509737220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509737280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509737340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509737400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509737460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509737520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509737580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509737640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509737700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509737760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509737820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509737880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509737940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509738000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509738060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509738120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509738180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509738240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509738300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509738360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509738420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509738480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509738540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509738600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509738660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509738720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509738780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509738840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509738900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509738960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509739020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509739080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509739140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509739200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509739260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509739320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509739380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509739440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509739500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509739560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509739620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509739680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509739740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509739800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509739860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509739920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509739980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509740040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509740100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509740160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509740220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509740280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509740340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509740400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509740460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509740520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509740580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509740640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509740700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509740760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509740820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509740880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509740940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509741000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509741060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509741120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509741180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509741240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509741300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509741360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509741420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509741480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509741540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509741600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509741660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509741720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509741780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509741840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509741900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509741960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509742020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509742080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509742140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509742200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509742260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509742320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509742380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509742440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509742500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509742560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509742620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509742680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509742740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509742800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509742860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509742920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509742980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509743040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509743100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509743160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509743220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509743280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509743340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509743400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509743460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509743520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509743580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509743640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509743700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509743760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509743820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509743880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509743940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509744000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509744060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509744120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509744180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509744240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509744300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509744360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509744420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509744480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509744540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509744600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509744660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509744720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509744780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509744840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509744900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509744960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509745020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509745080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509745140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509745200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509745260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509745320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509745380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509745440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509745500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509745560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509745620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509745680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509745740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509745800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509745860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509745920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509745980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509746040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509746100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509746160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509746220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509746280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509746340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509746400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509746460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509746520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509746580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509746640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509746700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509746760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509746820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509746880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509746940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509747000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509747060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509747120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509747180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509747240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509747300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509747360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509747420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509747480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509747540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509747600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509747660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509747720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509747780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509747840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509747900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509747960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509748020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509748080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509748140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509748200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509748260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509748320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509748380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509748440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509748500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509748560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509748620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509748680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509748740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509748800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509748860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509748920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509748980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509749040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509749100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509749160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509749220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509749280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509749340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509749400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509749460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509749520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509749580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509749640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509749700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509749760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509749820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509749880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509749940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509750000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509750060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509750120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509750180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509750240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509750300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509750360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509750420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509750480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509750540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509750600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509750660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509750720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509750780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509750840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509750900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509750960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509751020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509751080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509751140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509751200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509751260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509751320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509751380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509751440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509751500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509751560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509751620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509751680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509751740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509751800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509751860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509751920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509751980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509752040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509752100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509752160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509752220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509752280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509752340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509752400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509752460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509752520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509752580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509752640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509752700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509752760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509752820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509752880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509752940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509753000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509753060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509753120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509753180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509753240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509753300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509753360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509753420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509753480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509753540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509753600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509753660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509753720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509753780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509753840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509753900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509753960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509754020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509754080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509754140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509754200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509754260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509754320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509754380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509754440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509754500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509754560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509754620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509754680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509754740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509754800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509754860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509754920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509754980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509755040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509755100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509755160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509755220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509755280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509755340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509755400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509755460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509755520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509755580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509755640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509755700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509755760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509755820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509755880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509755940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509756000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509756060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509756120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509756180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509756240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509756300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509756360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509756420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509756480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509756540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509756600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509756660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509756720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509756780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509756840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509756900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509756960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509757020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509757080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509757140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509757200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509757260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509757320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509757380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509757440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509757500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509757560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509757620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509757680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509757740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509757800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509757860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509757920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509757980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509758040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509758100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509758160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509758220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509758280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509758340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509758400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509758460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509758520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509758580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509758640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509758700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509758760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509758820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509758880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509758940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509759000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509759060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509759120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509759180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509759240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509759300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509759360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509759420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509759480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509759540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509759600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509759660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509759720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509759780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509759840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509759900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509759960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509760020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509760080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509760140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509760200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509760260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509760320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509760380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509760440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509760500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509760560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509760620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509760680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509760740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509760800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509760860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509760920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509760980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509761040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509761100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509761160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509761220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509761280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509761340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509761400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509761460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509761520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509761580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509761640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509761700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509761760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509761820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509761880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509761940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509762000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509762060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509762120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509762180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509762240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509762300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509762360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509762420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509762480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509762540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509762600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509762660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509762720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509762780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509762840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509762900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509762960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509763020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509763080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509763140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509763200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509763260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509763320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509763380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509763440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509763500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509763560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509763620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509763680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509763740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509763800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509763860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509763920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509763980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509764040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509764100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509764160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509764220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509764280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509764340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509764400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509764460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509764520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509764580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509764640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509764700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509764760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509764820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509764880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509764940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509765000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509765060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509765120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509765180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509765240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509765300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509765360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509765420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509765480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509765540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509765600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509765660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509765720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509765780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509765840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509765900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509765960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509766020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509766080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509766140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509766200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509766260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509766320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509766380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509766440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509766500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509766560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509766620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509766680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509766740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509766800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509766860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509766920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509766980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509767040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509767100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509767160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509767220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509767280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509767340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509767400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509767460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509767520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509767580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509767640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509767700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509767760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509767820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509767880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509767940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509768000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509768060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509768120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509768180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509768240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509768300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509768360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509768420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509768480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509768540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509768600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509768660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509768720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509768780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509768840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509768900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509768960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509769020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509769080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509769140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509769200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509769260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509769320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509769380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509769440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509769500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509769560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509769620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509769680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509769740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509769800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509769860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509769920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509769980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509770040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509770100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509770160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509770220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509770280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509770340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509770400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509770460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509770520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509770580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509770640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509770700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509770760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509770820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509770880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509770940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509771000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509771060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509771120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509771180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509771240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509771300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509771360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509771420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509771480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509771540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509771600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509771660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509771720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509771780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509771840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509771900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509771960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509772020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509772080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509772140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509772200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509772260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509772320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509772380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509772440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509772500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509772560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509772620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509772680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509772740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509772800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509772860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509772920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509772980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509773040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509773100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509773160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509773220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509773280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509773340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509773400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509773460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509773520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509773580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509773640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509773700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509773760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509773820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509773880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509773940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509774000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509774060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509774120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509774180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509774240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509774300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509774360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509774420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509774480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509774540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509774600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509774660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509774720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509774780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509774840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509774900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509774960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509775020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509775080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509775140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509775200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509775260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509775320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509775380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509775440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509775500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509775560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509775620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509775680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509775740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509775800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509775860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509775920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509775980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509776040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509776100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509776160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509776220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509776280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509776340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509776400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509776460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509776520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509776580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509776640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509776700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509776760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509776820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509776880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509776940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509777000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509777060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509777120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509777180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509777240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509777300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509777360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509777420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509777480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509777540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509777600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509777660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509777720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509777780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509777840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509777900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509777960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509778020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509778080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509778140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509778200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509778260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509778320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509778380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509778440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509778500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509778560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509778620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509778680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509778740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509778800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509778860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509778920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509778980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509779040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509779100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509779160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509779220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509779280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509779340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509779400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509779460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509779520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509779580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509779640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509779700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509779760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509779820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509779880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509779940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509780000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509780060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509780120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509780180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509780240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509780300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509780360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509780420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509780480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509780540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509780600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509780660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509780720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509780780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509780840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509780900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509780960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509781020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509781080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509781140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509781200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509781260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509781320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509781380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509781440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509781500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509781560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509781620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509781680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509781740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509781800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509781860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509781920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509781980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509782040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509782100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509782160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509782220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509782280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509782340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509782400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509782460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509782520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509782580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509782640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509782700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509782760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509782820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509782880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509782940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509783000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509783060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509783120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509783180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509783240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509783300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509783360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509783420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509783480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509783540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509783600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509783660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509783720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509783780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509783840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509783900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509783960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509784020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509784080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509784140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509784200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509784260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509784320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509784380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509784440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509784500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509784560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509784620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509784680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509784740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509784800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509784860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509784920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509784980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509785040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509785100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509785160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509785220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509785280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509785340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509785400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509785460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509785520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509785580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509785640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509785700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509785760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509785820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509785880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509785940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509786000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509786060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509786120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509786180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509786240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509786300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509786360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509786420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509786480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509786540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509786600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509786660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509786720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509786780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509786840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509786900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509786960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509787020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509787080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509787140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509787200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509787260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509787320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509787380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509787440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509787500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509787560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509787620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509787680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509787740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509787800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509787860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509787920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509787980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509788040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509788100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509788160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509788220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509788280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509788340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509788400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509788460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509788520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509788580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509788640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509788700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509788760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509788820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509788880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509788940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509789000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509789060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509789120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509789180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509789240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509789300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509789360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509789420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509789480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509789540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509789600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509789660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509789720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509789780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509789840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509789900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509789960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509790020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509790080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509790140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509790200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509790260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509790320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509790380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509790440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509790500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509790560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509790620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509790680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509790740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509790800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509790860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509790920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509790980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509791040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509791100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509791160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509791220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509791280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509791340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509791400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509791460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509791520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509791580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509791640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509791700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509791760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509791820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509791880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509791940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509792000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509792060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509792120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509792180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509792240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509792300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509792360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509792420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509792480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509792540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509792600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509792660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509792720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509792780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509792840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509792900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509792960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509793020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509793080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509793140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509793200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509793260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509793320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509793380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509793440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509793500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509793560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509793620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509793680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509793740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509793800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509793860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509793920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509793980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509794040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509794100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509794160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509794220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509794280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509794340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509794400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509794460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509794520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509794580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509794640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509794700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509794760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509794820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509794880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509794940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509795000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509795060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509795120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509795180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509795240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509795300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509795360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509795420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509795480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509795540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509795600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509795660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509795720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509795780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509795840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509795900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509795960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509796020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509796080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509796140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509796200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509796260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509796320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509796380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509796440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509796500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509796560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509796620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509796680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509796740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509796800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509796860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509796920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509796980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509797040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509797100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509797160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509797220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509797280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509797340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509797400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509797460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509797520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509797580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509797640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509797700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509797760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509797820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509797880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509797940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509798000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509798060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509798120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509798180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509798240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509798300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509798360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509798420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509798480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509798540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509798600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509798660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509798720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509798780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509798840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509798900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509798960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509799020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509799080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509799140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509799200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509799260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509799320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509799380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509799440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509799500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509799560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509799620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509799680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509799740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509799800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509799860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509799920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509799980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509800040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509800100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509800160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509800220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509800280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509800340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509800400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509800460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509800520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509800580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509800640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509800700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509800760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509800820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509800880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509800940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509801000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509801060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509801120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509801180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509801240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509801300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509801360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509801420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509801480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509801540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509801600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509801660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509801720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509801780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509801840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509801900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509801960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509802020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509802080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509802140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509802200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509802260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509802320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509802380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509802440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509802500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509802560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509802620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509802680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509802740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509802800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509802860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509802920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509802980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509803040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509803100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509803160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509803220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509803280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509803340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509803400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509803460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509803520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509803580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509803640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509803700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509803760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509803820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509803880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509803940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509804000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509804060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509804120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509804180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509804240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509804300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509804360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509804420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509804480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509804540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509804600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509804660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509804720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509804780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509804840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509804900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509804960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509805020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509805080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509805140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509805200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509805260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509805320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509805380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509805440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509805500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509805560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509805620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509805680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509805740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509805800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509805860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509805920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509805980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509806040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509806100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509806160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509806220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509806280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509806340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509806400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509806460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509806520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509806580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509806640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509806700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509806760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509806820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509806880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509806940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509807000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509807060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509807120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509807180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509807240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509807300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509807360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509807420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509807480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509807540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509807600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509807660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509807720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509807780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509807840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509807900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509807960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509808020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509808080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509808140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509808200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509808260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509808320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509808380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509808440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509808500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509808560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509808620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509808680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509808740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509808800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509808860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509808920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509808980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509809040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509809100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509809160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509809220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509809280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509809340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509809400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509809460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509809520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509809580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509809640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509809700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509809760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509809820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509809880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509809940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509810000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509810060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509810120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509810180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509810240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509810300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509810360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509810420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509810480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509810540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509810600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509810660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509810720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509810780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509810840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509810900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509810960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509811020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509811080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509811140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509811200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509811260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509811320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509811380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509811440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509811500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509811560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509811620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509811680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509811740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509811800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509811860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509811920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509811980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509812040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509812100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509812160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509812220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509812280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509812340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509812400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509812460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509812520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509812580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509812640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509812700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509812760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509812820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509812880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509812940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509813000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509813060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509813120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509813180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509813240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509813300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509813360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509813420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509813480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509813540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509813600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509813660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509813720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509813780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509813840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509813900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509813960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509814020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509814080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509814140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509814200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509814260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509814320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509814380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509814440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509814500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509814560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509814620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509814680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509814740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509814800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509814860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509814920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509814980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509815040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509815100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509815160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509815220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509815280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509815340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509815400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509815460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509815520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509815580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509815640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509815700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509815760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509815820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509815880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509815940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509816000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509816060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509816120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509816180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509816240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509816300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509816360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509816420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509816480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509816540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509816600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509816660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509816720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509816780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509816840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509816900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509816960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509817020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509817080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509817140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509817200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509817260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509817320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509817380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509817440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509817500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509817560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509817620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509817680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509817740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509817800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509817860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509817920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509817980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509818040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509818100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509818160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509818220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509818280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509818340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509818400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509818460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509818520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509818580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509818640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509818700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509818760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509818820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509818880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509818940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509819000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509819060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509819120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509819180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509819240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509819300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509819360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509819420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509819480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509819540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509819600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509819660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509819720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509819780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509819840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509819900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509819960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509820020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509820080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509820140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509820200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509820260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509820320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509820380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509820440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509820500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509820560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509820620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509820680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509820740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509820800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509820860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509820920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509820980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509821040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509821100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509821160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509821220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509821280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509821340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509821400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509821460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509821520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509821580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509821640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509821700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509821760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509821820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509821880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509821940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509822000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509822060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509822120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509822180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509822240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509822300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509822360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509822420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509822480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509822540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509822600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509822660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509822720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509822780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509822840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509822900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509822960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509823020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509823080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509823140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509823200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509823260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509823320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509823380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509823440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509823500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509823560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509823620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509823680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509823740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509823800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509823860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509823920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509823980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509824040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509824100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509824160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509824220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509824280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509824340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509824400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509824460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509824520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509824580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509824640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509824700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509824760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509824820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509824880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509824940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509825000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509825060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509825120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509825180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509825240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509825300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509825360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509825420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509825480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509825540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509825600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509825660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509825720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509825780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509825840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509825900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509825960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509826020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509826080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509826140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509826200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509826260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509826320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509826380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509826440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509826500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509826560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509826620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509826680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509826740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509826800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509826860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509826920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509826980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509827040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509827100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509827160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509827220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509827280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509827340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509827400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509827460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509827520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509827580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509827640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509827700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509827760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509827820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509827880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509827940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509828000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509828060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509828120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509828180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509828240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509828300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509828360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509828420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509828480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509828540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509828600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509828660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509828720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509828780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509828840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509828900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509828960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509829020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509829080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509829140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509829200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509829260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509829320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509829380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509829440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509829500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509829560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509829620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509829680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509829740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509829800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509829860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509829920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509829980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509830040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509830100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509830160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509830220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509830280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509830340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509830400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509830460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509830520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509830580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509830640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509830700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509830760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509830820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509830880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509830940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509831000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509831060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509831120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509831180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509831240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509831300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509831360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509831420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509831480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509831540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509831600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509831660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509831720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509831780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509831840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509831900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509831960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509832020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509832080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509832140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509832200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509832260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509832320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509832380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509832440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509832500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509832560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509832620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509832680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509832740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509832800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509832860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509832920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509832980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509833040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509833100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509833160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509833220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509833280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509833340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509833400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509833460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509833520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509833580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509833640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509833700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509833760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509833820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509833880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509833940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509834000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509834060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509834120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509834180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509834240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509834300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509834360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509834420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509834480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509834540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509834600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509834660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509834720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509834780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509834840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509834900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509834960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509835020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509835080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509835140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509835200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509835260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509835320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509835380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509835440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509835500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509835560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509835620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509835680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509835740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509835800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509835860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509835920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509835980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509836040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509836100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509836160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509836220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509836280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509836340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509836400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509836460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509836520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509836580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509836640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509836700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509836760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509836820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509836880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509836940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509837000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509837060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509837120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509837180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509837240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509837300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509837360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509837420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509837480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509837540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509837600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509837660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509837720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509837780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509837840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509837900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509837960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509838020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509838080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509838140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509838200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509838260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509838320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509838380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509838440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509838500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509838560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509838620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509838680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509838740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509838800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509838860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509838920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509838980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509839040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509839100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509839160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509839220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509839280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509839340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509839400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509839460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509839520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509839580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509839640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509839700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509839760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509839820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509839880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509839940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509840000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509840060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509840120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509840180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509840240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509840300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509840360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509840420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509840480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509840540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509840600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509840660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509840720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509840780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509840840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509840900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509840960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509841020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509841080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509841140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509841200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509841260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509841320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509841380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509841440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509841500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509841560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509841620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509841680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509841740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509841800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509841860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509841920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509841980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509842040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509842100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509842160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509842220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509842280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509842340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509842400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509842460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509842520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509842580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509842640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509842700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509842760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509842820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509842880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509842940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509843000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509843060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509843120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509843180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509843240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509843300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509843360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509843420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509843480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509843540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509843600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509843660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509843720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509843780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509843840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509843900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509843960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509844020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509844080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509844140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509844200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509844260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509844320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509844380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509844440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509844500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509844560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509844620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509844680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509844740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509844800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509844860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509844920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509844980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509845040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509845100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509845160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509845220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509845280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509845340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509845400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509845460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509845520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509845580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509845640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509845700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509845760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509845820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509845880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509845940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509846000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509846060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509846120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509846180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509846240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509846300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509846360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509846420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509846480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509846540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509846600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509846660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509846720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509846780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509846840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509846900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509846960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509847020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509847080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509847140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509847200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509847260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509847320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509847380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509847440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509847500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509847560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509847620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509847680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509847740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509847800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509847860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509847920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509847980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509848040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509848100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509848160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509848220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509848280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509848340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509848400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509848460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509848520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509848580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509848640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509848700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509848760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509848820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509848880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509848940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509849000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509849060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509849120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509849180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509849240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509849300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509849360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509849420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509849480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509849540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509849600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509849660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509849720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509849780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509849840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509849900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509849960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509850020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509850080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509850140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509850200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509850260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509850320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509850380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509850440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509850500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509850560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509850620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509850680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509850740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509850800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509850860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509850920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509850980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509851040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509851100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509851160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509851220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509851280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509851340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509851400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509851460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509851520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509851580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509851640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509851700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509851760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509851820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509851880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509851940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509852000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509852060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509852120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509852180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509852240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509852300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509852360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509852420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509852480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509852540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509852600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509852660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509852720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509852780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509852840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509852900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509852960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509853020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509853080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509853140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509853200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509853260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509853320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509853380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509853440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509853500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509853560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509853620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509853680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509853740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509853800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509853860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509853920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509853980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509854040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509854100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509854160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509854220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509854280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509854340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509854400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509854460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509854520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509854580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509854640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509854700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509854760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509854820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509854880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509854940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509855000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509855060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509855120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509855180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509855240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509855300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509855360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509855420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509855480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509855540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509855600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509855660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509855720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509855780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509855840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509855900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509855960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509856020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509856080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509856140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509856200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509856260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509856320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509856380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509856440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509856500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509856560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509856620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509856680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509856740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509856800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509856860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509856920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509856980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509857040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509857100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509857160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509857220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509857280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509857340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509857400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509857460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509857520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509857580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509857640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509857700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509857760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509857820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509857880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509857940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509858000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509858060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509858120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509858180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509858240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509858300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509858360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509858420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509858480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509858540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509858600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509858660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509858720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509858780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509858840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509858900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509858960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509859020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509859080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509859140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509859200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509859260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509859320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509859380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509859440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509859500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509859560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509859620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509859680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509859740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509859800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509859860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509859920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509859980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509860040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509860100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509860160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509860220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509860280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509860340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509860400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509860460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509860520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509860580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509860640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509860700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509860760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509860820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509860880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509860940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509861000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509861060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509861120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509861180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509861240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509861300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509861360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509861420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509861480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509861540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509861600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509861660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509861720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509861780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509861840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509861900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509861960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509862020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509862080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509862140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509862200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509862260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509862320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509862380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509862440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509862500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509862560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509862620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509862680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509862740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509862800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509862860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509862920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509862980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509863040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509863100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509863160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509863220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509863280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509863340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509863400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509863460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509863520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509863580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509863640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509863700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509863760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509863820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509863880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509863940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509864000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509864060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509864120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509864180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509864240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509864300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509864360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509864420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509864480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509864540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509864600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509864660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509864720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509864780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509864840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509864900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509864960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509865020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509865080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509865140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509865200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509865260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509865320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509865380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509865440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509865500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509865560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509865620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509865680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509865740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509865800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509865860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509865920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509865980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509866040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509866100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509866160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509866220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509866280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509866340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509866400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509866460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509866520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509866580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509866640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509866700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509866760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509866820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509866880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509866940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509867000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509867060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509867120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509867180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509867240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509867300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509867360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509867420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509867480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509867540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509867600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509867660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509867720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509867780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509867840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509867900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509867960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509868020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509868080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509868140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509868200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509868260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509868320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509868380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509868440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509868500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509868560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509868620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509868680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509868740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509868800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509868860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509868920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509868980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509869040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509869100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509869160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509869220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509869280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509869340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509869400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509869460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509869520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509869580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509869640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509869700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509869760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509869820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509869880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509869940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509870000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509870060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509870120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509870180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509870240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509870300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509870360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509870420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509870480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509870540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509870600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509870660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509870720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509870780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509870840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509870900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509870960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509871020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509871080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509871140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509871200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509871260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509871320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509871380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509871440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509871500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509871560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509871620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509871680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509871740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509871800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509871860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509871920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509871980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509872040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509872100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509872160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509872220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509872280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509872340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509872400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509872460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509872520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509872580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509872640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509872700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509872760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509872820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509872880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509872940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509873000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509873060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509873120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509873180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509873240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509873300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509873360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509873420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509873480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509873540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509873600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509873660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509873720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509873780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509873840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509873900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509873960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509874020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509874080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509874140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509874200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509874260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509874320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509874380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509874440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509874500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509874560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509874620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509874680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509874740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509874800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509874860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509874920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509874980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509875040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509875100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509875160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509875220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509875280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509875340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509875400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509875460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509875520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509875580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509875640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509875700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509875760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509875820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509875880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509875940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509876000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509876060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509876120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509876180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509876240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509876300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509876360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509876420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509876480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509876540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509876600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509876660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509876720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509876780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509876840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509876900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509876960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509877020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509877080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509877140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509877200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509877260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509877320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509877380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509877440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509877500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509877560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509877620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509877680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509877740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509877800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509877860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509877920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509877980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509878040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509878100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509878160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509878220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509878280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509878340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509878400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509878460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509878520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509878580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509878640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509878700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509878760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509878820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509878880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509878940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509879000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509879060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509879120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509879180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509879240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509879300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509879360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509879420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509879480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509879540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509879600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509879660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509879720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509879780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509879840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509879900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509879960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509880020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509880080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509880140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509880200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509880260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509880320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509880380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509880440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509880500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509880560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509880620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509880680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509880740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509880800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509880860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509880920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509880980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509881040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509881100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509881160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509881220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509881280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509881340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509881400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509881460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509881520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509881580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509881640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509881700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509881760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509881820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509881880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509881940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509882000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509882060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509882120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509882180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509882240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509882300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509882360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509882420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509882480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509882540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509882600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509882660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509882720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509882780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509882840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509882900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509882960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509883020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509883080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509883140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509883200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509883260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509883320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509883380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509883440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509883500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509883560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509883620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509883680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509883740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509883800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509883860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509883920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509883980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509884040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509884100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509884160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509884220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509884280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509884340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509884400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509884460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509884520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509884580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509884640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509884700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509884760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509884820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509884880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509884940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509885000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509885060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509885120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509885180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509885240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509885300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509885360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509885420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509885480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509885540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509885600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509885660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509885720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509885780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509885840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509885900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509885960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509886020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509886080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509886140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509886200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509886260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509886320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509886380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509886440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509886500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509886560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509886620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509886680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509886740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509886800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509886860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509886920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509886980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509887040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509887100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509887160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509887220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509887280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509887340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509887400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509887460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509887520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509887580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509887640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509887700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509887760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509887820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509887880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509887940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509888000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509888060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509888120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509888180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509888240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509888300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509888360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509888420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509888480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509888540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509888600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509888660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509888720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509888780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509888840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509888900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509888960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509889020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509889080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509889140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509889200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509889260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509889320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509889380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509889440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509889500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509889560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509889620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509889680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509889740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509889800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509889860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509889920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509889980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509890040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509890100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509890160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509890220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509890280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509890340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509890400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509890460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509890520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509890580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509890640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509890700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509890760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509890820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509890880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509890940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509891000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509891060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509891120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509891180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509891240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509891300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509891360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509891420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509891480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509891540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509891600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509891660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509891720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509891780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509891840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509891900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509891960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509892020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509892080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509892140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509892200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509892260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509892320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509892380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509892440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509892500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509892560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509892620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509892680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509892740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509892800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509892860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509892920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509892980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509893040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509893100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509893160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509893220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509893280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509893340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509893400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509893460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509893520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509893580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509893640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509893700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509893760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509893820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509893880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509893940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509894000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509894060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509894120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509894180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509894240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509894300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509894360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509894420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509894480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509894540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509894600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509894660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509894720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509894780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509894840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509894900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509894960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509895020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509895080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509895140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509895200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509895260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509895320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509895380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509895440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509895500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509895560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509895620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509895680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509895740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509895800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509895860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509895920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509895980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509896040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509896100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509896160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509896220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509896280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509896340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509896400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509896460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509896520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509896580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509896640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509896700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509896760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509896820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509896880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509896940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509897000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509897060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509897120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509897180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509897240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509897300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509897360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509897420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509897480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509897540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509897600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509897660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509897720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509897780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509897840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509897900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509897960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509898020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509898080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509898140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509898200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509898260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509898320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509898380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509898440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509898500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509898560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509898620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509898680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509898740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509898800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509898860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509898920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509898980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509899040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509899100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509899160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509899220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509899280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509899340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509899400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509899460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509899520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509899580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509899640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509899700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509899760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509899820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509899880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509899940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509900000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509900060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509900120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509900180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509900240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509900300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509900360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509900420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509900480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509900540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509900600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509900660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509900720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509900780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509900840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509900900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509900960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509901020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509901080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509901140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509901200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509901260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509901320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509901380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509901440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509901500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509901560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509901620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509901680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509901740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509901800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509901860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509901920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509901980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509902040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509902100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509902160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509902220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509902280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509902340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509902400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509902460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509902520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509902580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509902640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509902700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509902760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509902820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509902880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509902940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509903000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509903060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509903120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509903180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509903240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509903300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509903360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509903420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509903480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509903540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509903600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509903660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509903720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509903780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509903840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509903900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509903960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509904020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509904080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509904140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509904200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509904260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509904320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509904380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509904440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509904500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509904560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509904620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509904680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509904740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509904800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509904860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509904920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509904980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509905040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509905100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509905160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509905220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509905280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509905340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509905400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509905460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509905520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509905580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509905640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509905700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509905760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509905820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509905880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509905940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509906000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509906060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509906120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509906180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509906240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509906300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509906360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509906420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509906480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509906540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509906600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509906660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509906720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509906780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509906840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509906900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509906960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509907020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509907080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509907140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509907200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509907260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509907320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509907380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509907440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509907500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509907560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509907620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509907680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509907740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509907800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509907860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509907920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509907980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509908040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509908100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509908160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509908220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509908280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509908340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509908400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509908460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509908520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509908580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509908640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509908700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509908760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509908820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509908880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509908940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509909000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509909060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509909120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509909180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509909240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509909300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509909360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509909420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509909480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509909540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509909600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509909660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509909720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509909780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509909840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509909900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509909960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509910020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509910080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509910140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509910200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509910260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509910320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509910380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509910440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509910500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509910560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509910620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509910680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509910740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509910800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509910860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509910920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509910980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509911040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509911100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509911160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509911220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509911280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509911340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509911400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509911460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509911520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509911580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509911640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509911700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509911760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509911820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509911880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509911940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509912000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509912060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509912120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509912180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509912240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509912300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509912360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509912420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509912480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509912540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509912600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509912660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509912720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509912780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509912840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509912900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509912960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509913020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509913080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509913140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509913200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509913260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509913320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509913380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509913440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509913500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509913560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509913620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509913680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509913740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509913800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509913860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509913920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509913980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509914040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509914100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509914160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509914220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509914280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509914340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509914400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509914460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509914520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509914580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509914640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509914700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509914760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509914820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509914880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509914940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509915000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509915060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509915120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509915180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509915240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509915300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509915360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509915420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509915480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509915540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509915600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509915660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509915720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509915780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509915840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509915900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509915960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509916020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509916080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509916140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509916200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509916260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509916320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509916380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509916440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509916500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509916560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509916620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509916680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509916740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509916800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509916860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509916920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509916980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509917040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509917100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509917160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509917220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509917280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509917340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509917400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509917460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509917520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509917580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509917640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509917700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509917760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509917820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509917880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509917940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509918000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509918060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509918120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509918180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509918240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509918300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509918360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509918420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509918480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509918540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509918600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509918660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509918720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509918780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509918840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509918900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509918960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509919020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509919080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509919140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509919200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509919260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509919320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509919380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509919440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509919500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509919560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509919620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509919680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509919740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509919800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509919860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509919920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509919980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509920040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509920100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509920160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509920220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509920280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509920340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509920400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509920460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509920520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509920580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509920640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509920700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509920760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509920820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509920880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509920940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509921000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509921060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509921120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509921180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509921240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509921300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509921360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509921420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509921480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509921540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509921600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509921660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509921720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509921780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509921840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509921900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509921960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509922020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509922080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509922140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509922200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509922260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509922320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509922380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509922440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509922500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509922560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509922620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509922680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509922740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509922800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509922860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509922920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509922980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509923040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509923100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509923160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509923220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509923280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509923340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509923400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509923460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509923520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509923580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509923640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509923700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509923760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509923820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509923880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509923940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509924000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509924060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509924120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509924180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509924240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509924300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509924360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509924420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509924480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509924540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509924600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509924660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509924720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509924780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509924840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509924900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509924960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509925020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509925080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509925140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509925200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509925260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509925320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509925380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509925440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509925500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509925560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509925620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509925680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509925740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509925800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509925860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509925920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509925980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509926040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509926100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509926160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509926220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509926280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509926340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509926400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509926460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509926520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509926580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509926640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509926700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509926760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509926820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509926880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509926940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509927000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509927060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509927120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509927180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509927240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509927300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509927360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509927420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509927480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509927540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509927600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509927660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509927720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509927780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509927840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509927900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509927960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509928020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509928080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509928140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509928200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509928260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509928320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509928380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509928440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509928500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509928560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509928620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509928680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509928740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509928800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509928860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509928920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509928980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509929040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509929100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509929160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509929220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509929280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509929340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509929400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509929460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509929520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509929580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509929640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509929700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509929760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509929820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509929880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509929940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509930000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509930060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509930120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509930180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509930240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509930300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509930360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509930420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509930480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509930540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509930600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509930660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509930720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509930780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509930840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509930900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509930960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509931020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509931080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509931140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509931200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509931260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509931320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509931380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509931440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509931500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509931560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509931620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509931680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509931740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509931800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509931860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509931920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509931980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509932040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509932100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509932160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509932220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509932280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509932340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509932400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509932460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509932520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509932580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509932640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509932700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509932760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509932820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509932880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509932940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509933000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509933060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509933120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509933180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509933240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509933300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509933360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509933420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509933480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509933540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509933600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509933660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509933720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509933780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509933840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509933900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509933960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509934020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509934080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509934140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509934200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509934260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509934320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509934380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509934440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509934500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509934560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509934620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509934680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509934740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509934800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509934860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509934920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509934980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509935040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509935100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509935160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509935220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509935280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509935340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509935400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509935460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509935520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509935580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509935640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509935700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509935760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509935820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509935880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509935940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509936000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509936060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509936120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509936180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509936240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509936300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509936360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509936420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509936480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509936540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509936600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509936660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509936720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509936780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509936840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509936900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509936960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509937020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509937080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509937140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509937200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509937260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509937320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509937380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509937440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509937500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509937560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509937620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509937680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509937740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509937800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509937860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509937920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509937980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509938040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509938100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509938160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509938220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509938280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509938340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509938400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509938460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509938520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509938580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509938640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509938700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509938760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509938820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509938880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509938940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509939000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509939060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509939120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509939180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509939240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509939300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509939360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509939420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509939480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509939540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509939600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509939660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509939720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509939780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509939840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509939900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509939960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509940020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509940080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509940140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509940200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509940260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509940320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509940380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509940440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509940500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509940560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509940620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509940680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509940740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509940800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509940860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509940920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509940980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509941040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509941100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509941160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509941220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509941280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509941340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509941400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509941460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509941520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509941580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509941640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509941700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509941760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509941820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509941880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509941940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509942000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509942060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509942120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509942180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509942240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509942300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509942360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509942420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509942480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509942540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509942600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509942660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509942720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509942780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509942840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509942900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509942960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509943020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509943080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509943140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509943200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509943260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509943320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509943380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509943440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509943500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509943560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509943620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509943680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509943740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509943800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509943860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509943920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509943980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509944040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509944100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509944160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509944220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509944280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509944340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509944400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509944460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509944520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509944580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509944640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509944700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509944760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509944820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509944880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509944940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509945000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509945060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509945120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509945180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509945240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509945300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509945360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509945420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509945480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509945540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509945600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509945660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509945720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509945780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509945840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509945900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509945960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509946020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509946080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509946140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509946200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509946260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509946320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509946380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509946440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509946500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509946560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509946620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509946680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509946740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509946800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509946860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509946920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509946980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509947040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509947100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509947160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509947220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509947280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509947340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509947400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509947460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509947520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509947580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509947640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509947700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509947760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509947820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509947880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509947940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509948000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509948060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509948120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509948180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509948240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509948300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509948360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509948420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509948480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509948540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509948600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509948660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509948720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509948780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509948840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509948900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509948960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509949020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509949080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509949140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509949200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509949260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509949320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509949380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509949440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509949500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509949560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509949620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509949680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509949740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509949800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509949860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509949920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509949980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509950040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509950100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509950160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509950220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509950280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509950340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509950400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509950460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509950520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509950580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509950640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509950700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509950760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509950820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509950880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509950940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509951000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509951060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509951120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509951180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509951240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509951300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509951360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509951420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509951480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509951540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509951600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509951660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509951720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509951780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509951840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509951900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509951960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509952020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509952080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509952140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509952200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509952260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509952320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509952380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509952440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509952500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509952560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509952620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509952680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509952740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509952800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509952860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509952920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509952980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509953040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509953100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509953160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509953220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509953280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509953340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509953400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509953460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509953520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509953580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509953640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509953700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509953760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509953820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509953880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509953940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509954000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509954060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509954120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509954180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509954240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509954300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509954360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509954420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509954480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509954540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509954600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509954660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509954720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509954780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509954840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509954900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509954960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509955020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509955080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509955140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509955200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509955260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509955320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509955380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509955440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509955500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509955560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509955620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509955680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509955740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509955800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509955860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509955920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509955980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509956040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509956100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509956160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509956220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509956280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509956340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509956400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509956460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509956520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509956580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509956640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509956700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509956760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509956820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509956880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509956940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509957000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509957060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509957120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509957180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509957240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509957300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509957360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509957420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509957480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509957540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509957600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509957660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509957720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509957780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509957840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509957900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509957960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509958020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509958080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509958140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509958200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509958260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509958320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509958380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509958440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509958500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509958560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509958620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509958680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509958740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509958800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509958860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509958920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509958980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509959040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509959100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509959160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509959220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509959280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509959340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509959400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509959460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509959520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509959580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509959640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509959700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509959760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509959820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509959880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509959940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509960000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509960060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509960120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509960180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509960240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509960300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509960360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509960420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509960480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509960540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509960600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509960660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509960720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509960780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509960840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509960900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509960960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509961020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509961080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509961140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509961200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509961260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509961320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509961380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509961440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509961500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509961560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509961620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509961680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509961740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509961800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509961860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509961920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509961980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509962040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509962100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509962160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509962220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509962280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509962340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509962400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509962460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509962520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509962580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509962640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509962700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509962760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509962820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509962880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509962940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509963000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509963060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509963120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509963180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509963240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509963300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509963360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509963420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509963480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509963540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509963600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509963660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509963720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509963780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509963840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509963900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509963960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509964020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509964080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509964140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509964200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509964260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509964320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509964380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509964440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509964500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509964560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509964620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509964680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509964740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509964800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509964860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509964920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509964980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509965040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509965100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509965160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509965220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509965280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509965340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509965400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509965460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509965520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509965580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509965640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509965700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509965760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509965820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509965880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509965940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509966000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509966060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509966120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509966180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509966240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509966300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509966360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509966420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509966480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509966540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509966600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509966660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509966720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509966780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509966840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509966900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509966960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509967020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509967080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509967140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509967200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509967260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509967320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509967380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509967440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509967500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509967560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509967620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509967680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509967740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509967800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509967860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509967920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509967980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509968040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509968100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509968160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509968220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509968280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509968340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509968400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509968460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509968520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509968580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509968640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509968700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509968760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509968820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509968880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509968940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509969000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509969060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509969120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509969180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509969240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509969300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509969360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509969420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509969480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509969540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509969600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509969660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509969720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509969780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509969840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509969900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509969960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509970020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509970080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509970140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509970200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509970260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509970320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509970380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509970440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509970500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509970560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509970620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509970680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509970740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509970800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509970860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509970920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509970980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509971040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509971100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509971160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509971220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509971280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509971340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509971400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509971460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509971520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509971580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509971640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509971700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509971760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509971820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509971880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509971940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509972000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509972060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509972120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509972180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509972240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509972300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509972360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509972420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509972480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509972540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509972600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509972660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509972720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509972780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509972840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509972900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509972960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509973020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509973080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509973140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509973200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509973260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509973320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509973380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509973440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509973500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509973560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509973620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509973680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509973740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509973800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509973860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509973920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509973980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509974040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509974100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509974160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509974220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509974280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509974340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509974400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509974460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509974520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509974580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509974640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509974700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509974760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509974820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509974880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509974940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509975000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509975060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509975120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509975180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509975240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509975300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509975360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509975420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509975480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509975540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509975600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509975660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509975720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509975780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509975840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509975900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509975960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509976020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509976080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509976140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509976200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509976260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509976320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509976380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509976440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509976500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509976560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509976620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509976680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509976740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509976800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509976860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509976920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509976980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509977040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509977100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509977160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509977220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509977280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509977340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509977400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509977460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509977520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509977580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509977640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509977700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509977760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509977820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509977880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509977940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509978000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509978060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509978120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509978180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509978240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509978300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509978360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509978420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509978480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509978540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509978600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509978660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509978720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509978780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509978840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509978900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509978960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509979020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509979080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509979140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509979200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509979260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509979320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509979380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509979440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509979500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509979560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509979620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509979680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509979740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509979800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509979860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509979920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509979980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509980040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509980100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509980160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509980220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509980280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509980340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509980400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509980460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509980520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509980580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509980640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509980700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509980760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509980820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509980880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509980940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509981000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509981060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509981120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509981180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509981240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509981300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509981360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509981420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509981480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509981540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509981600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509981660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509981720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509981780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509981840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509981900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509981960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509982020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509982080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509982140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509982200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509982260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509982320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509982380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509982440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509982500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509982560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509982620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509982680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509982740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509982800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509982860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509982920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509982980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509983040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509983100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509983160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509983220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509983280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509983340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509983400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509983460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509983520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509983580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509983640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509983700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509983760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509983820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509983880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509983940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509984000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509984060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509984120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509984180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509984240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509984300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509984360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509984420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509984480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509984540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509984600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509984660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509984720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509984780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509984840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509984900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509984960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509985020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509985080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509985140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509985200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509985260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509985320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509985380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509985440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509985500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509985560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509985620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509985680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509985740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509985800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509985860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509985920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509985980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509986040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509986100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509986160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509986220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509986280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509986340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509986400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509986460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509986520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509986580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509986640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509986700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509986760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509986820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509986880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509986940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509987000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509987060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509987120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509987180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509987240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509987300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509987360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509987420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509987480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509987540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509987600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509987660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509987720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509987780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509987840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509987900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509987960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509988020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509988080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509988140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509988200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509988260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509988320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509988380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509988440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509988500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509988560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509988620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509988680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509988740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509988800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509988860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509988920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509988980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509989040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509989100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509989160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509989220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509989280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509989340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509989400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509989460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509989520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509989580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509989640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509989700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509989760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509989820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509989880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509989940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509990000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509990060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509990120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509990180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509990240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509990300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509990360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509990420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509990480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509990540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509990600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509990660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509990720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509990780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509990840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509990900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509990960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509991020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509991080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509991140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509991200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509991260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509991320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509991380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509991440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509991500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509991560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509991620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509991680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509991740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509991800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509991860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509991920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509991980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509992040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509992100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509992160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509992220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509992280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509992340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509992400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509992460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509992520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509992580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509992640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509992700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509992760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509992820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509992880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509992940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509993000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509993060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509993120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509993180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509993240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509993300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509993360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509993420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509993480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509993540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509993600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509993660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509993720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509993780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509993840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509993900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509993960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509994020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509994080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509994140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509994200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509994260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509994320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509994380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509994440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509994500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509994560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509994620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509994680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509994740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509994800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509994860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509994920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509994980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509995040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509995100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509995160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509995220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509995280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509995340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509995400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509995460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509995520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509995580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509995640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509995700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509995760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509995820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509995880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509995940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509996000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509996060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509996120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509996180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509996240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509996300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509996360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509996420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509996480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509996540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509996600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509996660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509996720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509996780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509996840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509996900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509996960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509997020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509997080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509997140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509997200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509997260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509997320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509997380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509997440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509997500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509997560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509997620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509997680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509997740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509997800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509997860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509997920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509997980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509998040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509998100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509998160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509998220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509998280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509998340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509998400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509998460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509998520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509998580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509998640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509998700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509998760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509998820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509998880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509998940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509999000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509999060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509999120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509999180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509999240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509999300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509999360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509999420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509999480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509999540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509999600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509999660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509999720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1509999780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509999840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509999900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1509999960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510000020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510000080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510000140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510000200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510000260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510000320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510000380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510000440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510000500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510000560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510000620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510000680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510000740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510000800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510000860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510000920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510000980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510001040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510001100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510001160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510001220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510001280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510001340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510001400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510001460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510001520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510001580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510001640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510001700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510001760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510001820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510001880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510001940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510002000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510002060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510002120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510002180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510002240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510002300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510002360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510002420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510002480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510002540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510002600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510002660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510002720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510002780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510002840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510002900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510002960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510003020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510003080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510003140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510003200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510003260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510003320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510003380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510003440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510003500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510003560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510003620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510003680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510003740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510003800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510003860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510003920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510003980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510004040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510004100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510004160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510004220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510004280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510004340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510004400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510004460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510004520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510004580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510004640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510004700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510004760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510004820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510004880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510004940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510005000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510005060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510005120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510005180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510005240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510005300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510005360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510005420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510005480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510005540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510005600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510005660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510005720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510005780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510005840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510005900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510005960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510006020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510006080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510006140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510006200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510006260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510006320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510006380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510006440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510006500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510006560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510006620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510006680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510006740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510006800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510006860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510006920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510006980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510007040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510007100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510007160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510007220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510007280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510007340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510007400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510007460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510007520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510007580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510007640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510007700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510007760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510007820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510007880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510007940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510008000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510008060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510008120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510008180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510008240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510008300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510008360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510008420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510008480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510008540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510008600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510008660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510008720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510008780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510008840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510008900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510008960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510009020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510009080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510009140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510009200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510009260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510009320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510009380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510009440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510009500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510009560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510009620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510009680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510009740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510009800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510009860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510009920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510009980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510010040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510010100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510010160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510010220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510010280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510010340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510010400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510010460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510010520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510010580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510010640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510010700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510010760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510010820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510010880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510010940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510011000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510011060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510011120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510011180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510011240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510011300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510011360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510011420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510011480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510011540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510011600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510011660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510011720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510011780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510011840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510011900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510011960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510012020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510012080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510012140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510012200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510012260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510012320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510012380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510012440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510012500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510012560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510012620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510012680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510012740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510012800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510012860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510012920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510012980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510013040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510013100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510013160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510013220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510013280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510013340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510013400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510013460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510013520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510013580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510013640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510013700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510013760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510013820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510013880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510013940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510014000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510014060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510014120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510014180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510014240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510014300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510014360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510014420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510014480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510014540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510014600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510014660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510014720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510014780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510014840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510014900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510014960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510015020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510015080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510015140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510015200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510015260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510015320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510015380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510015440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510015500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510015560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510015620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510015680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510015740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510015800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510015860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510015920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510015980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510016040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510016100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510016160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510016220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510016280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510016340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510016400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510016460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510016520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510016580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510016640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510016700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510016760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510016820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510016880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510016940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510017000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510017060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510017120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510017180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510017240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510017300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510017360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510017420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510017480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510017540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510017600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510017660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510017720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510017780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510017840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510017900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510017960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510018020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510018080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510018140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510018200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510018260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510018320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510018380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510018440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510018500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510018560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510018620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510018680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510018740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510018800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510018860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510018920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510018980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510019040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510019100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510019160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510019220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510019280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510019340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510019400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510019460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510019520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510019580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510019640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510019700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510019760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510019820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510019880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510019940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510020000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510020060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510020120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510020180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510020240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510020300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510020360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510020420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510020480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510020540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510020600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510020660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510020720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510020780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510020840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510020900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510020960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510021020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510021080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510021140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510021200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510021260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510021320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510021380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510021440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510021500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510021560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510021620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510021680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510021740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510021800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510021860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510021920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510021980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510022040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510022100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510022160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510022220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510022280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510022340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510022400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510022460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510022520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510022580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510022640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510022700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510022760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510022820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510022880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510022940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510023000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510023060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510023120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510023180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510023240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510023300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510023360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510023420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510023480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510023540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510023600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510023660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510023720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510023780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510023840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510023900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510023960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510024020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510024080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510024140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510024200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510024260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510024320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510024380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510024440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510024500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510024560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510024620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510024680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510024740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510024800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510024860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510024920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510024980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510025040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510025100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510025160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510025220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510025280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510025340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510025400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510025460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510025520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510025580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510025640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510025700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510025760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510025820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510025880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510025940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510026000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510026060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510026120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510026180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510026240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510026300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510026360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510026420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510026480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510026540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510026600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510026660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510026720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510026780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510026840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510026900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510026960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510027020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510027080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510027140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510027200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510027260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510027320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510027380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510027440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510027500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510027560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510027620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510027680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510027740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510027800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510027860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510027920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510027980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510028040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510028100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510028160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510028220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510028280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510028340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510028400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510028460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510028520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510028580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510028640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510028700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510028760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510028820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510028880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510028940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510029000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510029060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510029120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510029180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510029240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510029300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510029360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510029420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510029480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510029540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510029600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510029660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510029720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510029780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510029840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510029900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510029960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510030020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510030080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510030140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510030200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510030260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510030320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510030380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510030440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510030500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510030560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510030620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510030680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510030740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510030800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510030860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510030920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510030980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510031040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510031100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510031160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510031220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510031280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510031340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510031400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510031460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510031520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510031580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510031640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510031700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510031760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510031820000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510031880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510031940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510032000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510032060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510032120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510032180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510032240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510032300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510032360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510032420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510032480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510032540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510032600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510032660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510032720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510032780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510032840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510032900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510032960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510033020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510033080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510033140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510033200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510033260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510033320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510033380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510033440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510033500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510033560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510033620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510033680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510033740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510033800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510033860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510033920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510033980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510034040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510034100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510034160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510034220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510034280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510034340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510034400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510034460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510034520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510034580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510034640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510034700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510034760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510034820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510034880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510034940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510035000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510035060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510035120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510035180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510035240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510035300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510035360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510035420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510035480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510035540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510035600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510035660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510035720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510035780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510035840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510035900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510035960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510036020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510036080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510036140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510036200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510036260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510036320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510036380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510036440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510036500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510036560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510036620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510036680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510036740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510036800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510036860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510036920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510036980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510037040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510037100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510037160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510037220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510037280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510037340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510037400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510037460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510037520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510037580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510037640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510037700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510037760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510037820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510037880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510037940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510038000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510038060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510038120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510038180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510038240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510038300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510038360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510038420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510038480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510038540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510038600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510038660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510038720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510038780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510038840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510038900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510038960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510039020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510039080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510039140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510039200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510039260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510039320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510039380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510039440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510039500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510039560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510039620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510039680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510039740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510039800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510039860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510039920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510039980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510040040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510040100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510040160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510040220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510040280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510040340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510040400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510040460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510040520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510040580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510040640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510040700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510040760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510040820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510040880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510040940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510041000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510041060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510041120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510041180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510041240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510041300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510041360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510041420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510041480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510041540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510041600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510041660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510041720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510041780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510041840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510041900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510041960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510042020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510042080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510042140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510042200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510042260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510042320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510042380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510042440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510042500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510042560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510042620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510042680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510042740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510042800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510042860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510042920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510042980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510043040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510043100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510043160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510043220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510043280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510043340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510043400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510043460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510043520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510043580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510043640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510043700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510043760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510043820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510043880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510043940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510044000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510044060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510044120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510044180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510044240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510044300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510044360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510044420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510044480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510044540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510044600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510044660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510044720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510044780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510044840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510044900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510044960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510045020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510045080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510045140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510045200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510045260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510045320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510045380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510045440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510045500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510045560000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510045620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510045680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510045740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510045800000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510045860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510045920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510045980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510046040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510046100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510046160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510046220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510046280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510046340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510046400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510046460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510046520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510046580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510046640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510046700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510046760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510046820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510046880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510046940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510047000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510047060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510047120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510047180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510047240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510047300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510047360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510047420000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510047480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510047540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510047600000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510047660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510047720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510047780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510047840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510047900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510047960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510048020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510048080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510048140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510048200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510048260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510048320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510048380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510048440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510048500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510048560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510048620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510048680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510048740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510048800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510048860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510048920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510048980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510049040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510049100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510049160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510049220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510049280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510049340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510049400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510049460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510049520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510049580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510049640000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510049700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510049760000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510049820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510049880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510049940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510050000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510050060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510050120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510050180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510050240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510050300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510050360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510050420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510050480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510050540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510050600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510050660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510050720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510050780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510050840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510050900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510050960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510051020000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510051080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510051140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510051200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510051260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510051320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510051380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510051440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510051500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510051560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510051620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510051680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510051740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510051800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510051860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510051920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510051980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510052040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510052100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510052160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510052220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510052280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510052340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510052400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510052460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510052520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510052580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510052640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510052700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510052760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510052820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510052880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510052940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510053000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510053060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510053120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510053180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510053240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510053300000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510053360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510053420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510053480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510053540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510053600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510053660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510053720000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510053780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510053840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510053900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510053960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510054020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510054080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510054140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510054200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510054260000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510054320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510054380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510054440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510054500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510054560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510054620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510054680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510054740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510054800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510054860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510054920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510054980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510055040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510055100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510055160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510055220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510055280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510055340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510055400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510055460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510055520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510055580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510055640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510055700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510055760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510055820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510055880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510055940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510056000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510056060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510056120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510056180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510056240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510056300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510056360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510056420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510056480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510056540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510056600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510056660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510056720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510056780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510056840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510056900000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510056960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510057020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510057080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510057140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510057200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510057260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510057320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510057380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510057440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510057500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510057560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510057620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510057680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510057740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510057800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510057860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510057920000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510057980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510058040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510058100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510058160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510058220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510058280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510058340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510058400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510058460000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510058520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510058580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510058640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510058700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510058760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510058820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510058880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510058940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510059000000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510059060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510059120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510059180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510059240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510059300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510059360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510059420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510059480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510059540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510059600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510059660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510059720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510059780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510059840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510059900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510059960000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510060020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510060080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510060140000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510060200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510060260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510060320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510060380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510060440000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510060500000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510060560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510060620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510060680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510060740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510060800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510060860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510060920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510060980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510061040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510061100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510061160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510061220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510061280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510061340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510061400000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510061460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510061520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510061580000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510061640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510061700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510061760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510061820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510061880000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510061940000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510062000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510062060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510062120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510062180000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510062240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510062300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510062360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510062420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510062480000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510062540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510062600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510062660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510062720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510062780000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510062840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510062900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510062960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510063020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510063080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510063140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510063200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510063260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510063320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510063380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510063440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510063500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510063560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510063620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510063680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510063740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510063800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510063860000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510063920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510063980000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510064040000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510064100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510064160000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510064220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510064280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510064340000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510064400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510064460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510064520000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510064580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510064640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510064700000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510064760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510064820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510064880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510064940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510065000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510065060000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510065120000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510065180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510065240000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510065300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510065360000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510065420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510065480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510065540000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510065600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510065660000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510065720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510065780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510065840000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510065900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510065960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510066020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510066080000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510066140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510066200000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510066260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510066320000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510066380000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510066440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510066500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510066560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510066620000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510066680000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510066740000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510066800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510066860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510066920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510066980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510067040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510067100000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510067160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510067220000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510067280000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510067340000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510067400000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510067460000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510067520000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510067580000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510067640000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510067700000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510067760000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510067820000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510067880000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510067940000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510068000000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510068060000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510068120000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510068180000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510068240000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510068300000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510068360000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510068420000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510068480000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510068540000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510068600000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510068660000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510068720000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510068780000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510068840000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510068900000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510068960000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510069020000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510069080000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510069140000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510069200000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510069260000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510069320000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510069380000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510069440000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510069500000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510069560000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510069620000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510069680000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510069740000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510069800000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510069860000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510069920000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510069980000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510070040000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510070100000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510070160000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510070220000,true) +insert into root.ln.wf01.wt01(timestamp,status) values(1510070280000,false) +insert into root.ln.wf01.wt01(timestamp,status) values(1510070340000,false) +create timeseries root.ln.wf01.wt01.temperature with datatype=FLOAT,encoding=RLE +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509465600000,25.957603) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509465660000,24.359503) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509465720000,20.092794) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509465780000,20.182663) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509465840000,21.125198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509465900000,22.720892) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509465960000,20.71) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509466020000,21.451046) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509466080000,22.57987) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509466140000,20.98177) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509466200000,25.521263) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509466260000,22.905718) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509466320000,21.646704) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509466380000,20.048601) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509466440000,23.983444) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509466500000,24.07331) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509466560000,22.06242) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509466620000,20.061153) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509466680000,24.600649) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509466740000,23.140144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509466800000,21.67964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509466860000,25.678375) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509466920000,23.667482) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509466980000,22.206978) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509467040000,20.14182) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509467100000,25.551165) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509467160000,25.641031) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509467220000,23.025486) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509467280000,21.564981) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509467340000,25.96688) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509467400000,21.90166) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509467460000,22.642708) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509467520000,20.631815) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509467580000,22.22751) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509467640000,23.170044) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509467700000,21.70954) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509467760000,23.442833) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509467820000,21.84473) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509467880000,23.58576) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509467940000,25.520542) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509468000000,24.060038) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509468060000,24.663486) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509468120000,20.396778) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509468180000,23.781418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509468240000,24.522465) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509468300000,20.118158) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509468360000,24.657654) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509468420000,23.39864) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509468480000,20.783094) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509468540000,25.184992) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509468600000,25.27486) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509468660000,23.209702) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509468720000,21.950687) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509468780000,20.352585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509468840000,23.73704) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509468900000,22.276535) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509468960000,21.017519) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509469020000,25.419418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509469080000,23.35426) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509469140000,21.343369) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509469200000,20.890308) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509469260000,24.687555) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509469320000,24.777422) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509469380000,23.316917) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509469440000,20.701372) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509469500000,25.30476) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509469560000,23.844255) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509469620000,25.577547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509469680000,20.318594) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509469740000,24.92198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509469800000,20.104885) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509469860000,20.84593) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509469920000,25.385426) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509469980000,21.18261) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509470040000,21.272478) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509470100000,21.463137) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509470160000,23.196428) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509470220000,21.598326) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509470280000,21.734905) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509470340000,23.468197) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509470400000,21.457304) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509470460000,22.060753) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509470520000,23.995533) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509470580000,22.53503) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509470640000,21.074524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509470700000,24.87177) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509470760000,24.411251) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509470820000,23.152235) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509470880000,21.087078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509470940000,25.488976) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509471000000,24.028471) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509471060000,21.614414) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509471120000,20.15391) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509471180000,24.555809) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509471240000,23.095303) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509471300000,22.037592) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509471360000,20.0267) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509471420000,25.97897) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509471480000,23.913813) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509471540000,22.453308) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509471600000,21.194292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509471660000,22.789988) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509471720000,22.980646) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509471780000,21.520142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509471840000,23.454922) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509471900000,24.05837) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509471960000,22.597866) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509472020000,23.78077) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509472080000,24.723305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509472140000,24.675575) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509472200000,20.408869) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509472260000,24.948364) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509472320000,25.139023) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509472380000,20.130249) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509472440000,24.669744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509472500000,25.41079) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509472560000,21.144083) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509472620000,25.74747) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509472680000,25.938128) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509472740000,21.67142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509472800000,20.210915) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509472860000,20.163185) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509472920000,24.299519) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509472980000,22.288624) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509473040000,20.828121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509473100000,24.625366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509473160000,23.36635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509473220000,21.905846) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509473280000,25.2903) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509473340000,23.6922) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509473400000,23.23914) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509473460000,21.778635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509473520000,25.713478) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509473580000,25.665749) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509473640000,23.654856) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509473700000,21.791187) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509473760000,20.330683) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509473820000,24.732582) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509473880000,20.465874) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509473940000,20.85802) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509474000000,25.397516) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509474060000,20.993212) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509474120000,21.734257) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509474180000,20.47524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509474240000,21.658146) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509474300000,23.811966) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509474360000,22.351463) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509474420000,24.084755) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509474480000,22.019781) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509474540000,22.62323) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509474600000,23.806135) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509474660000,22.34563) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509474720000,23.288166) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509474780000,24.88386) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509474840000,23.423355) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509474900000,23.614014) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509474960000,25.548794) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509475020000,25.501064) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509475080000,24.040562) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509475140000,21.975403) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509475200000,25.964512) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509475260000,24.567898) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509475320000,22.50274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509475380000,21.042236) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509475440000,25.581732) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509475500000,24.991076) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509475560000,22.37553) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509475620000,20.915026) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509475680000,21.004892) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509475740000,24.80214) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509475800000,23.543123) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509475860000,21.53223) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509475920000,25.467073) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509475980000,23.868973) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509476040000,22.609957) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509476100000,24.343248) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509476160000,24.533907) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509476220000,22.935804) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509476280000,24.870586) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509476340000,25.611631) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509476400000,25.7015) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509476460000,21.297194) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509476520000,21.487852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509476580000,25.42288) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509476640000,21.156172) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509476700000,25.558071) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509476760000,20.299116) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509476820000,21.68351) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509476880000,20.223005) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509476940000,20.826454) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509477000000,22.559746) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509477060000,21.30073) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509477120000,23.041761) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509477180000,24.637455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509477240000,23.17695) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509477300000,21.716446) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509477360000,25.85278) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509477420000,24.254677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509477480000,22.243784) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509477540000,20.178627) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509477600000,25.725567) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509477660000,24.127466) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509477720000,22.666962) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509477780000,20.051416) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509477840000,20.141283) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509477900000,24.74467) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509477960000,22.679514) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509478020000,21.21901) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509478080000,25.208117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509478140000,23.206852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509478200000,21.746347) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509478260000,20.285843) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509478320000,22.019135) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509478380000,22.824072) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509478440000,20.813179) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509478500000,22.54647) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509478560000,24.83789) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509478620000,23.239788) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509478680000,24.368612) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509478740000,24.55927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509478800000,23.098766) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509478860000,24.694462) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509478920000,23.435446) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509478980000,24.17649) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509479040000,25.359396) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509479100000,23.761293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509479160000,24.703829) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509479220000,20.43712) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509479280000,20.526989) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509479340000,24.928886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509479400000,22.313341) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509479460000,21.054327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509479520000,25.593822) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509479580000,23.391068) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509479640000,21.930563) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509479700000,21.822424) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509479760000,25.757267) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509479820000,24.159164) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509479880000,22.69866) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509479940000,22.788527) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509480000000,20.374472) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509480060000,24.776371) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509480120000,23.315865) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509480180000,21.250708) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509480240000,25.991692) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509480300000,24.39359) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509480360000,21.778046) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509480420000,20.317541) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509480480000,25.058525) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509480540000,20.65422) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509480600000,21.395266) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509480660000,20.934746) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509480720000,22.668037) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509480780000,22.667019) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509480840000,21.206514) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509480900000,22.939806) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509480960000,23.130465) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509481020000,21.733852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509481080000,23.467144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509481140000,22.00664) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509481200000,22.747684) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509481260000,24.544868) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509481320000,22.533978) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509481380000,24.825396) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509481440000,20.558687) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509481500000,24.960585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509481560000,23.701569) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509481620000,21.086025) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509481680000,25.625519) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509481740000,24.027418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509481800000,22.969707) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509481860000,21.509201) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509481920000,25.49831) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509481980000,23.295555) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509482040000,22.03654) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509482100000,22.126408) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509482160000,20.665903) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509482220000,24.463148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509482280000,22.452255) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509482340000,21.19324) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509482400000,25.128082) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509482460000,23.529982) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509482520000,22.069477) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509482580000,25.65542) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509482640000,24.194916) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509482700000,22.596813) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509482760000,24.330105) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509482820000,20.621525) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509482880000,24.006165) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509482940000,25.601858) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509483000000,20.342905) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509483060000,24.8824) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509483120000,20.81718) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509483180000,25.21908) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509483240000,25.409737) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509483300000,21.14303) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509483360000,25.884014) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509483420000,20.487463) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509483480000,22.220755) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509483540000,21.760235) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509483600000,22.501282) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509483660000,24.298466) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509483720000,22.83796) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509483780000,21.377455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509483840000,24.76191) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509483900000,24.171255) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509483960000,22.71075) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509484020000,20.645592) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509484080000,25.185087) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509484140000,23.788475) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509484200000,21.17293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509484260000,21.262798) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509484320000,25.802292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509484380000,24.204191) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509484440000,22.340523) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509484500000,20.32963) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509484560000,24.869125) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509484620000,22.66637) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509484680000,21.407356) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509484740000,25.946852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509484800000,23.331306) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509484860000,21.733204) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509484920000,21.823072) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509484980000,22.951897) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509485040000,23.692942) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509485100000,22.094841) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509485160000,23.277744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509485220000,24.22028) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509485280000,22.759775) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509485340000,24.35547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509485400000,22.894966) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509485460000,23.287113) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509485520000,25.020405) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509485580000,23.422302) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509485640000,25.713722) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509485700000,21.447014) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509485760000,25.63761) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509485820000,20.241058) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509485880000,21.97435) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509485940000,20.513845) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509486000000,20.060787) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509486060000,23.858032) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509486120000,21.847141) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509486180000,20.386635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509486240000,24.522968) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509486300000,22.924866) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509486360000,23.014732) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509486420000,20.399189) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509486480000,24.938683) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509486540000,23.54207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509486600000,22.081566) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509486660000,20.016409) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509486720000,24.005516) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509486780000,22.608904) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509486840000,20.543747) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509486900000,25.08324) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509486960000,23.622738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509487020000,24.613964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509487080000,20.354996) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509487140000,24.89449) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509487200000,20.62778) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509487260000,21.231232) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509487320000,25.972216) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509487380000,21.155119) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509487440000,21.896166) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509487500000,20.298063) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509487560000,22.232845) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509487620000,20.77234) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509487680000,20.963) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509487740000,22.558693) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509487800000,22.648561) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509487860000,23.591097) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509487920000,25.324389) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509487980000,23.726286) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509488040000,23.916945) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509488100000,20.657682) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509488160000,25.197178) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509488220000,23.599075) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509488280000,21.533918) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509488340000,25.724516) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509488400000,24.264011) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509488460000,22.061256) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509488520000,22.151123) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509488580000,20.690619) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509488640000,24.276564) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509488700000,22.678461) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509488760000,21.217957) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509488820000,25.757452) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509488880000,23.893784) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509488940000,22.295681) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509489000000,20.28479) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509489060000,24.219631) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509489120000,22.15466) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509489180000,22.10693) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509489240000,23.840221) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509489300000,24.03088) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509489360000,22.570375) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509489420000,24.36756) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509489480000,25.108606) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509489540000,23.648102) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509489600000,24.831005) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509489660000,25.635944) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509489720000,24.175438) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509489780000,25.908731) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509489840000,24.448227) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509489900000,20.602047) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509489960000,21.98644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509490020000,20.525936) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509490080000,21.266981) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509490140000,22.862677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509490200000,22.409618) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509490260000,22.600277) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509490320000,24.333569) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509490380000,22.735466) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509490440000,21.476452) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509490500000,25.411293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509490560000,23.4004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509490620000,23.352673) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509490680000,21.287514) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509490740000,20.0285) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509490800000,24.567993) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509490860000,22.969893) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509490920000,20.354347) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509490980000,25.095331) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509491040000,23.634827) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509491100000,21.432072) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509491160000,25.97157) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509491220000,23.356209) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509491280000,21.29105) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509491340000,21.24332) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509491400000,25.782816) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509491460000,21.516108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509491520000,21.908255) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509491580000,20.310154) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509491640000,22.043446) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509491700000,22.784492) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509491760000,21.525476) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509491820000,23.12117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509491880000,23.311829) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509491940000,21.851324) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509492000000,23.786106) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509492060000,23.738377) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509492120000,24.479424) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509492180000,25.662327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509492240000,24.201822) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509492300000,25.812717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509492360000,21.54601) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509492420000,20.085505) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509492480000,20.276161) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509492540000,22.073345) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509492600000,20.61284) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509492660000,25.152336) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509492720000,23.08718) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509492780000,23.03945) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509492840000,21.230047) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509492900000,25.16489) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509492960000,23.704384) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509493020000,22.106283) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509493080000,20.847267) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509493140000,24.231722) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509493200000,22.771217) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509493260000,21.173115) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509493320000,24.50349) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509493380000,23.042986) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509493440000,22.582466) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509493500000,20.379711) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509493560000,24.919207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509493620000,23.66019) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509493680000,25.393482) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509493740000,25.996933) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509493800000,23.98604) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509493860000,25.92082) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509493920000,20.661867) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509493980000,25.063765) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509494040000,20.797056) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509494100000,21.189205) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509494160000,21.279072) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509494220000,22.874767) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509494280000,21.414263) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509494340000,22.155308) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509494400000,24.345657) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509494460000,22.747557) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509494520000,23.488602) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509494580000,25.221893) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509494640000,23.96288) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509494700000,22.364777) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509494760000,25.749233) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509494820000,24.288727) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509494880000,24.378593) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509494940000,22.37733) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509495000000,20.916824) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509495060000,24.905933) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509495120000,22.840775) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509495180000,21.444162) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509495240000,25.983658) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509495300000,24.523153) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509495360000,21.907608) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509495420000,25.705038) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509495480000,24.244534) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509495540000,22.179377) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509495600000,22.269243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509495660000,20.671143) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509495720000,24.257088) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509495780000,22.796581) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509495840000,21.336077) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509495900000,22.931772) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509495960000,23.874308) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509496020000,21.863415) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509496080000,23.596706) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509496140000,24.200155) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509496200000,22.94114) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509496260000,24.67443) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509496320000,20.415462) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509496380000,24.81736) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509496440000,20.550652) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509496500000,25.202286) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509496560000,25.943333) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509496620000,21.539026) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509496680000,25.528133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509496740000,20.470669) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509496800000,22.20396) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509496860000,20.60586) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509496920000,25.145355) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509496980000,22.731298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509497040000,22.821167) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509497100000,21.223064) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509497160000,25.157907) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509497220000,23.697403) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509497280000,21.888) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509497340000,25.685246) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509497400000,24.224741) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509497460000,22.764236) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509497520000,20.699263) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509497580000,24.49651) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509497640000,22.485617) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509497700000,22.575485) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509497760000,20.510326) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509497820000,25.113714) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509497880000,23.65321) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509497940000,21.037664) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509498000000,25.57716) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509498060000,24.180548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509498120000,25.91384) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509498180000,20.654884) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509498240000,24.643993) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509498300000,20.441177) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509498360000,21.182222) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509498420000,21.27209) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509498480000,23.005383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509498540000,21.40728) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509498600000,22.605385) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509498660000,24.338676) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509498720000,22.878172) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509498780000,23.48162) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509498840000,25.4164) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509498900000,23.40551) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509498960000,24.146557) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509499020000,25.74225) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509499080000,24.483234) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509499140000,24.573103) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509499200000,21.957558) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509499260000,20.359455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509499320000,24.89895) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509499380000,23.035282) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509499440000,21.574778) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509499500000,25.976677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509499560000,23.361132) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509499620000,21.29616) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509499680000,25.835653) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509499740000,24.237553) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509499800000,22.172396) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509499860000,21.711874) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509499920000,20.45286) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509499980000,24.250105) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509500040000,22.7896) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509500100000,21.329096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509500160000,24.91504) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509500220000,23.316938) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509500280000,21.856434) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509500340000,23.589725) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509500400000,24.53226) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509500460000,22.934158) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509500520000,24.117062) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509500580000,20.408482) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509500640000,24.947975) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509500700000,21.551117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509500760000,20.090612) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509500820000,20.281271) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509500880000,22.014563) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509500940000,20.61795) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509501000000,21.358995) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509501060000,23.092287) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509501120000,21.081394) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509501180000,21.886333) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509501240000,23.619625) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509501300000,23.709494) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509501360000,22.24899) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509501420000,20.046234) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509501480000,24.236832) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509501540000,22.776325) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509501600000,20.711168) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509501660000,25.113068) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509501720000,23.048094) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509501780000,20.432549) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509501840000,24.972044) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509501900000,23.373943) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509501960000,23.46381) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509502020000,21.600142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509502080000,25.589249) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509502140000,23.991148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509502200000,21.925991) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509502260000,20.666975) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509502320000,25.20647) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509502380000,20.802166) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509502440000,20.992825) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509502500000,25.733809) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509502560000,21.4671) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509502620000,22.070549) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509502680000,22.160416) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509502740000,23.34332) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509502800000,25.091812) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509502860000,23.493711) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509502920000,25.227003) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509502980000,23.766499) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509503040000,24.158646) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509503100000,25.754341) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509503160000,24.293835) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509503220000,25.034882) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509503280000,20.969662) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509503340000,25.371561) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509503400000,21.11259) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509503460000,22.845882) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509503520000,21.38538) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509503580000,25.988766) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509503640000,23.923609) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509503700000,21.912716) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509503760000,20.452211) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509503820000,23.644989) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509503880000,22.184484) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509503940000,20.72398) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509504000000,24.108435) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509504060000,22.711823) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509504120000,22.801691) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509504180000,21.341185) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509504240000,25.276028) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509504300000,23.677925) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509504360000,21.868523) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509504420000,25.803366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509504480000,24.342861) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509504540000,22.744759) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509504600000,24.67954) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509504660000,24.870197) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509504720000,23.409695) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509504780000,25.005388) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509504840000,21.296806) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509504900000,20.843748) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509504960000,22.026653) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509505020000,22.630102) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509505080000,21.169596) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509505140000,23.104378) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509505200000,21.643873) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509505260000,22.247322) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509505320000,23.430225) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509505380000,22.171211) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509505440000,22.912256) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509505500000,24.507952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509505560000,24.59782) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509505620000,24.788477) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509505680000,20.723259) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509505740000,25.125156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509505800000,23.664652) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509505860000,21.599495) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509505920000,24.984135) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509505980000,23.386032) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509506040000,21.320875) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509506100000,25.86037) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509506160000,24.601357) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509506220000,24.553627) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509506280000,21.93808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509506340000,20.477575) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509506400000,25.01707) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509506460000,23.015806) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509506520000,21.555302) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509506580000,25.544409) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509506640000,23.479252) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509506700000,22.08264) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509506760000,20.622133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509506820000,22.355427) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509506880000,22.546085) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509506940000,22.498356) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509507000000,25.239094) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509507060000,25.980139) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509507120000,24.519634) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509507180000,20.11533) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509507240000,20.507477) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509507300000,25.046972) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509507360000,20.780264) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509507420000,25.182161) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509507480000,20.124697) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509507540000,21.307602) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509507600000,25.847095) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509507660000,22.000917) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509507720000,23.73421) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509507780000,22.475193) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509507840000,22.665852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509507900000,24.261547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509507960000,22.801043) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509508020000,20.73607) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509508080000,24.670914) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509508140000,23.072811) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509508200000,21.061918) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509508260000,25.19825) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509508320000,23.737745) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509508380000,23.690016) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509508440000,22.229511) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509508500000,25.613966) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509508560000,24.35495) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509508620000,22.75685) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509508680000,20.691692) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509508740000,25.231186) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509508800000,23.421783) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509508860000,21.21903) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509508920000,25.758526) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509508980000,24.29802) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509509040000,21.038757) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509509100000,23.19258) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509509160000,21.181686) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509509220000,22.914978) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509509280000,23.656025) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509509340000,22.259413) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509509400000,23.992704) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509509460000,24.183363) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509509520000,22.722858) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509509580000,24.520042) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509509640000,23.059536) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509509700000,23.800583) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509509760000,24.983486) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509509820000,24.935757) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509509880000,25.878292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509509940000,21.611584) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509510000000,20.15108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509510060000,24.552979) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509510120000,21.332966) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509510180000,25.87246) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509510240000,24.411957) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509510300000,22.209202) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509510360000,20.950186) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509510420000,24.939293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509510480000,22.874136) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509510540000,22.826406) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509510600000,21.365902) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509510660000,20.106886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509510720000,23.49134) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509510780000,21.89324) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509510840000,20.432735) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509510900000,24.569067) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509510960000,23.108562) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509511020000,21.51046) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509511080000,24.894915) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509511140000,24.441856) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509511200000,24.531723) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509511260000,20.127419) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509511320000,20.868465) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509511380000,24.857573) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509511440000,20.792353) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509511500000,21.395803) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509511560000,25.935299) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509511620000,21.66859) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509511680000,22.060738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509511740000,20.462635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509511800000,22.195927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509511860000,20.735422) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509511920000,23.02684) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509511980000,24.824024) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509512040000,22.813133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509512100000,23.554178) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509512160000,25.28747) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509512220000,23.084902) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509512280000,21.624395) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509512340000,25.00885) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509512400000,23.548347) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509512460000,22.151733) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509512520000,20.086576) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509512580000,24.626072) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509512640000,24.165552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509512700000,21.962797) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509512760000,20.703781) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509512820000,25.243277) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509512880000,23.782772) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509512940000,21.580019) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509513000000,25.770615) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509513060000,24.31011) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509513120000,22.244953) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509513180000,20.64685) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509513240000,21.0891) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509513300000,24.473555) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509513360000,24.563423) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509513420000,22.96532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509513480000,24.698612) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509513540000,25.641148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509513600000,23.630255) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509513660000,25.22595) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509513720000,25.966995) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509513780000,24.707981) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509513840000,20.441273) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509513900000,24.84317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509513960000,25.033829) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509514020000,20.96861) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509514080000,21.058477) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509514140000,21.661926) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509514200000,23.395218) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509514260000,21.384327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509514320000,21.520905) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509514380000,23.1166) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509514440000,21.656094) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509514500000,20.19559) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509514560000,23.781534) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509514620000,22.183432) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509514680000,20.722927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509514740000,24.65777) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509514800000,24.747639) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509514860000,23.351025) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509514920000,20.735481) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509514980000,25.274975) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509515040000,23.81447) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509515100000,22.417858) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509515160000,20.352701) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509515220000,24.341808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509515280000,22.881304) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509515340000,21.685995) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509515400000,20.22549) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509515460000,20.315357) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509515520000,23.699814) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509515580000,22.101711) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509515640000,20.842695) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509515700000,22.575987) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509515760000,23.317034) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509515820000,21.718931) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509515880000,23.103325) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509515940000,23.844372) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509516000000,22.383867) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509516060000,23.97956) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509516120000,22.720547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509516180000,24.461576) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509516240000,20.194868) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509516300000,24.596767) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509516360000,25.337812) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509516420000,20.466637) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509516480000,24.455744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509516540000,25.059193) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509516600000,20.792484) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509516660000,25.53347) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509516720000,24.072964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509516780000,21.87021) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509516840000,25.859318) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509516900000,25.949186) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509516960000,24.085518) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509517020000,22.487415) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509517080000,21.02691) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509517140000,24.411366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509517200000,23.152351) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509517260000,21.554249) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509517320000,20.093744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509517380000,24.028587) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509517440000,23.02514) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509517500000,21.427038) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509517560000,25.361881) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509517620000,25.451748) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509517680000,23.991243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509517740000,25.788427) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509517800000,25.979086) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509517860000,24.518581) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509517920000,20.251873) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509517980000,21.056812) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509518040000,25.596306) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509518100000,20.779211) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509518160000,21.520258) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509518220000,20.123644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509518280000,21.856936) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509518340000,21.946804) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509518400000,22.137463) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509518460000,23.733158) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509518520000,21.668184) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509518580000,22.409231) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509518640000,24.142523) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509518700000,22.54442) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509518760000,22.93657) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509518820000,24.66986) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509518880000,23.209354) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509518940000,21.611254) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509519000000,25.747585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509519060000,25.287066) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509519120000,23.826561) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509519180000,21.623806) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509519240000,20.163301) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509519300000,24.904285) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509519360000,22.288742) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509519420000,20.69064) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509519480000,25.230135) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509519540000,24.777077) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509519600000,22.711918) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509519660000,21.113817) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509519720000,20.653296) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509519780000,24.588139) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509519840000,23.329124) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509519900000,21.731022) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509519960000,23.464314) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509520020000,23.654972) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509520080000,22.395956) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509520140000,23.991652) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509520200000,24.732697) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509520260000,23.272192) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509520320000,24.656586) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509520380000,25.260035) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509520440000,25.349903) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509520500000,21.083195) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509520560000,25.622688) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509520620000,25.621672) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509520680000,20.804575) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509520740000,25.34407) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509520800000,20.085117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509520860000,21.882301) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509520920000,20.421797) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509520980000,20.612453) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509521040000,22.345745) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509521100000,20.949133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509521160000,21.039001) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509521220000,24.973843) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509521280000,22.962952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509521340000,21.36485) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509521400000,25.501183) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509521460000,24.040676) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509521520000,22.580172) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509521580000,20.98207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509521640000,25.37397) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509521700000,23.913467) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509521760000,22.452961) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509521820000,20.250208) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509521880000,20.340075) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509521940000,24.53067) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509522000000,22.465515) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509522060000,20.867413) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509522120000,25.406908) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509522180000,21.341688) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509522240000,21.532347) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509522300000,25.934246) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509522360000,21.667538) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509522420000,22.610073) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509522480000,21.149567) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509522540000,22.745262) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509522600000,24.486294) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509522660000,23.025787) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509522720000,24.154613) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509522780000,22.55651) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509522840000,23.297558) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509522900000,24.480461) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509522960000,23.221445) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509523020000,23.824894) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509523080000,25.558186) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509523140000,24.097681) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509523200000,24.48983) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509523260000,20.085524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509523320000,20.175392) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509523380000,24.714886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509523440000,22.64973) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509523500000,21.253117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509523560000,25.242226) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509523620000,23.177067) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509523680000,21.716562) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509523740000,21.125906) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509523800000,25.665401) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509523860000,23.049856) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509523920000,21.589352) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509523980000,21.541622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509524040000,25.677954) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509524100000,24.21745) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509524160000,22.206558) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509524220000,20.003803) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509524280000,24.744787) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509524340000,23.284283) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509524400000,25.017574) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509524460000,25.621023) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509524520000,23.81162) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509524580000,25.544912) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509524640000,20.285957) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509524700000,20.238228) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509524760000,21.971521) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509524820000,21.55771) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509524880000,20.097206) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509524940000,21.692902) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509525000000,20.232397) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509525060000,21.174932) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509525120000,22.357836) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509525180000,20.759735) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509525240000,21.50078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509525300000,23.435562) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509525360000,21.975058) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509525420000,21.927326) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509525480000,25.311783) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509525540000,23.851276) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509525600000,22.592262) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509525660000,20.389507) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509525720000,24.929003) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509525780000,22.91811) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509525840000,21.8604) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509525900000,20.262297) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509525960000,24.801792) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509526020000,23.341288) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509526080000,20.92723) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509526140000,20.879503) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509526200000,25.418997) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509526260000,23.35384) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509526320000,21.893335) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509526380000,20.496723) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509526440000,23.881178) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509526500000,22.420673) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509526560000,20.960169) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509526620000,22.757353) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509526680000,23.498398) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509526740000,21.487507) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509526800000,23.220798) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509526860000,25.374619) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509526920000,23.309647) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509526980000,25.042938) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509527040000,25.233597) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509527100000,23.635496) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509527160000,25.570276) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509527220000,24.109772) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509527280000,24.850819) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509527340000,20.446512) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509527400000,24.63711) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509527460000,25.378155) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509527520000,21.111446) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509527580000,21.063717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509527640000,25.603212) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509527700000,23.189157) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509527760000,21.728653) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509527820000,20.13055) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509527880000,24.065393) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509527940000,23.612335) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509528000000,21.601442) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509528060000,25.398687) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509528120000,23.938183) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509528180000,22.679167) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509528240000,22.769035) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509528300000,20.56628) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509528360000,24.555387) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509528420000,23.094883) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509528480000,21.231215) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509528540000,25.633114) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509528600000,24.17261) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509528660000,21.557064) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509528720000,20.298048) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509528780000,24.699947) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509528840000,20.433239) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509528900000,21.174284) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509528960000,20.713764) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509529020000,21.70499) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509529080000,22.446037) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509529140000,20.985533) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509529200000,22.718824) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509529260000,21.322212) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509529320000,21.51287) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509529380000,23.246162) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509529440000,21.785658) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509529500000,22.590595) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509529560000,24.323887) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509529620000,22.312996) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509529680000,24.604414) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509529740000,20.200108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509529800000,24.941093) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509529860000,23.480587) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509529920000,20.865044) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509529980000,25.266941) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509530040000,23.918575) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509530100000,21.853416) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509530160000,20.392912) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509530220000,24.794811) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509530280000,22.380754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509530340000,20.92025) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509530400000,21.010118) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509530460000,25.412016) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509530520000,23.346859) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509530580000,21.537455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509530640000,20.07695) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509530700000,23.874197) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509530760000,22.413692) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509530820000,21.154676) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509530880000,24.539131) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509530940000,22.941029) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509531000000,21.480524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509531060000,22.609348) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509531120000,24.900768) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509531180000,23.302666) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509531240000,24.485569) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509531300000,25.226616) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509531360000,23.9676) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509531420000,25.563295) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509531480000,24.10279) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509531540000,24.29345) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509531600000,20.22823) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509531660000,24.630127) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509531720000,25.371174) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509531780000,21.104465) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509531840000,20.643946) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509531900000,21.448883) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509531960000,23.182175) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509532020000,21.72167) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509532080000,20.261166) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509532140000,25.065857) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509532200000,23.054966) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509532260000,21.59446) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509532320000,25.529303) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509532380000,24.13269) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509532440000,22.672186) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509532500000,20.05664) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509532560000,20.14651) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509532620000,24.548407) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509532680000,23.28939) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509532740000,21.224234) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509532800000,25.21334) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509532860000,23.61524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509532920000,21.751572) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509532980000,20.291067) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509533040000,24.830563) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509533100000,20.426256) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509533160000,20.012447) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509533220000,20.102314) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509533280000,21.835606) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509533340000,22.439056) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509533400000,20.978552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509533460000,22.362944) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509533520000,23.10399) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509533580000,21.505888) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509533640000,23.239182) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509533700000,21.980165) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509533760000,22.170824) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509533820000,23.766518) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509533880000,22.306013) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509533940000,24.597431) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509534000000,20.532213) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509534060000,24.93411) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509534120000,25.12477) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509534180000,20.85806) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509534240000,20.405003) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509534300000,24.8069) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509534360000,22.741743) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509534420000,20.73085) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509534480000,25.471836) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509534540000,23.269081) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509534600000,21.808577) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509534660000,21.898443) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509534720000,25.282898) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509534780000,23.886286) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509534840000,22.425781) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509534900000,20.965277) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509534960000,24.90012) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509535020000,23.503506) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509535080000,21.492615) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509535140000,25.427456) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509535200000,23.966951) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509535260000,21.764383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509535320000,23.497675) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509535380000,25.238705) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509535440000,23.7782) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509535500000,25.373896) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509535560000,20.316431) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509535620000,24.855927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509535680000,20.03883) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509535740000,20.642279) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509535800000,25.383263) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509535860000,21.116556) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509535920000,25.656052) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509535980000,20.2595) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509536040000,21.643894) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509536100000,21.73376) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509536160000,22.474808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509536220000,24.070501) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509536280000,22.609997) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509536340000,23.808102) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509536400000,25.541393) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509536460000,23.94329) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509536520000,22.482786) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509536580000,20.619118) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509536640000,24.608227) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509536700000,23.010124) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509536760000,20.944967) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509536820000,21.034834) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509536880000,25.775818) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509536940000,24.177717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509537000000,21.562172) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509537060000,20.101667) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509537120000,24.842651) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509537180000,22.639896) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509537240000,21.179392) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509537300000,25.168499) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509537360000,22.498875) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509537420000,20.900774) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509537480000,20.99064) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509537540000,22.723932) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509537600000,22.91459) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509537660000,21.517979) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509537720000,23.25127) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509537780000,23.992317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509537840000,22.53181) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509537900000,24.328995) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509537960000,24.519653) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509538020000,23.059149) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509538080000,24.792442) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509538140000,23.395828) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509538200000,25.687248) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509538260000,20.870152) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509538320000,25.409647) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509538380000,20.013096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509538440000,22.753834) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509538500000,21.29333) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509538560000,21.483986) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509538620000,23.079681) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509538680000,21.820667) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509538740000,20.36016) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509538800000,24.295004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509538860000,22.696903) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509538920000,22.236382) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509538980000,20.372715) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509539040000,24.912209) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509539100000,23.314108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509539160000,21.853603) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509539220000,25.439547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509539280000,23.979042) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509539340000,22.38094) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509539400000,20.315783) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509539460000,24.25081) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509539520000,22.239918) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509539580000,20.037165) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509539640000,20.127031) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509539700000,24.666527) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509539760000,20.601309) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509539820000,21.204758) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509539880000,25.193865) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509539940000,20.927156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509540000000,21.869692) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509540060000,20.27159) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509540120000,22.004883) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509540180000,22.19554) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509540240000,20.936523) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509540300000,22.532219) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509540360000,22.622087) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509540420000,23.363132) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509540480000,24.546038) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509540540000,23.955381) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509540600000,24.696426) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509540660000,20.42972) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509540720000,24.969215) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509540780000,23.572601) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509540840000,20.957056) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509540900000,25.496552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509540960000,24.036047) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509541020000,22.034782) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509541080000,22.12465) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509541140000,20.113758) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509541200000,24.0486) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509541260000,22.450499) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509541320000,21.191483) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509541380000,25.730978) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509541440000,23.115433) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509541500000,21.51733) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509541560000,25.452358) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509541620000,23.387201) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509541680000,21.926697) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509541740000,21.878967) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509541800000,25.263422) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509541860000,24.004406) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509541920000,22.543901) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509541980000,24.139597) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509542040000,24.880642) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509542100000,23.07124) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509542160000,24.804531) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509542220000,25.40798) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509542280000,23.947475) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509542340000,25.882256) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509542400000,20.072914) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509542460000,20.025185) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509542520000,21.758478) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509542580000,20.297974) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509542640000,22.046465) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509542700000,23.642159) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509542760000,21.631268) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509542820000,22.372313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509542880000,24.307095) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509542940000,22.708992) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509543000000,21.248487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509543060000,24.632942) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509543120000,23.373928) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509543180000,23.326199) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509543240000,21.26104) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509543300000,25.800535) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509543360000,23.789642) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509543420000,21.788378) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509543480000,20.327873) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509543540000,24.867369) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509543600000,23.406864) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509543660000,20.599642) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509543720000,24.588749) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509543780000,23.128244) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509543840000,21.063087) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509543900000,21.015358) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509543960000,25.756342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509544020000,23.140797) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509544080000,21.680292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509544140000,20.082191) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509544200000,22.016972) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509544260000,22.758018) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509544320000,20.747126) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509544380000,22.34282) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509544440000,23.285355) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509544500000,21.82485) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509544560000,23.558142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509544620000,23.510412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509544680000,23.70107) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509544740000,20.441809) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509544800000,24.981304) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509544860000,25.584753) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509544920000,21.318045) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509544980000,25.508642) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509545040000,20.24969) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509545100000,21.845383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509545160000,20.384878) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509545220000,25.125862) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509545280000,22.510319) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509545340000,22.46259) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509545400000,21.002083) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509545460000,24.936926) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509545520000,23.67791) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509545580000,22.07981) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509545640000,25.464264) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509545700000,24.00376) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509545760000,21.938786) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509545820000,20.340685) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509545880000,24.275528) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509545940000,22.264635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509546000000,22.354504) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509546060000,20.353237) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509546120000,24.892733) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509546180000,23.432228) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509546240000,20.816683) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509546300000,25.42007) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509546360000,23.959566) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509546420000,25.692858) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509546480000,20.433903) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509546540000,25.03729) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509546600000,20.220196) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509546660000,20.96124) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509546720000,21.05111) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509546780000,22.646803) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509546840000,23.089052) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509546900000,23.27971) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509546960000,25.013002) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509547020000,23.414902) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509547080000,24.357437) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509547140000,20.090729) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509547200000,24.079836) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509547260000,24.683285) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509547320000,20.618065) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509547380000,25.157562) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509547440000,25.247429) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509547500000,23.044674) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509547560000,21.033781) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509547620000,25.774767) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509547680000,23.709608) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509547740000,22.111507) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509547800000,20.651003) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509547860000,23.43099) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509547920000,21.970486) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509547980000,20.372383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509548040000,24.911879) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509548100000,23.04821) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509548160000,22.58769) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509548220000,20.989588) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509548280000,24.92443) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509548340000,23.463926) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509548400000,22.20491) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509548460000,23.800606) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509548520000,23.991264) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509548580000,22.53076) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509548640000,24.46554) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509548700000,25.068989) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509548760000,23.608484) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509548820000,24.79139) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509548880000,21.082808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509548940000,20.492151) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509549000000,22.225443) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509549060000,20.764938) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509549120000,20.955597) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509549180000,22.75278) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509549240000,21.292276) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509549300000,22.033321) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509549360000,23.766613) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509549420000,22.37) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509549480000,22.56066) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509549540000,24.293951) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509549600000,24.38382) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509549660000,22.785717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509549720000,20.922049) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509549780000,24.911156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509549840000,23.450651) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509549900000,21.247898) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509549960000,25.182926) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509550020000,23.72242) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509550080000,21.106876) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509550140000,25.508774) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509550200000,24.249758) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509550260000,24.339626) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509550320000,22.274467) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509550380000,20.676367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509550440000,24.665474) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509550500000,22.801805) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509550560000,21.341301) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509550620000,25.743198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509550680000,21.476492) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509550740000,21.868639) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509550800000,20.408134) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509550860000,22.00383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509550920000,22.744875) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509550980000,22.834743) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509551040000,25.025093) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509551100000,25.628542) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509551160000,24.168037) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509551220000,25.901329) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509551280000,24.642313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509551340000,25.245762) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509551400000,20.428667) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509551460000,24.968163) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509551520000,25.910698) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509551580000,21.506392) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509551640000,20.045887) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509551700000,21.786919) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509551760000,23.52021) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509551820000,22.123596) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509551880000,20.663092) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509551940000,24.597935) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509552000000,22.587042) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509552060000,20.384474) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509552120000,24.319317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509552180000,22.85881) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509552240000,21.398306) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509552300000,20.001694) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509552360000,23.386148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509552420000,23.476017) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509552480000,22.01551) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509552540000,25.812757) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509552600000,24.553741) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509552660000,22.542849) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509552720000,20.477692) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509552780000,24.87959) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509552840000,23.620575) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509552900000,25.353867) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509552960000,25.544525) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509553020000,23.946423) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509553080000,20.68716) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509553140000,22.978579) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509553200000,21.518074) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509553260000,23.11377) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509553320000,23.304428) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509553380000,22.045412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509553440000,23.778704) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509553500000,22.180603) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509553560000,22.921648) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509553620000,24.306042) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509553680000,22.845537) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509553740000,23.448986) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509553800000,25.182278) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509553860000,25.272144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509553920000,25.664293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509553980000,21.259987) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509554040000,25.799484) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509554100000,24.338978) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509554160000,21.669353) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509554220000,20.07125) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509554280000,24.06036) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509554340000,21.995201) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509554400000,20.736187) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509554460000,25.138084) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509554520000,25.227951) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509554580000,22.612408) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509554640000,21.151901) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509554700000,25.75529) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509554760000,23.690132) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509554820000,22.229628) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509554880000,20.218735) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509554940000,24.21747) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509555000000,22.756966) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509555060000,21.296461) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509555120000,23.029753) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509555180000,24.640648) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509555240000,24.180126) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509555300000,25.913418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509555360000,20.654465) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509555420000,25.056364) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509555480000,20.991144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509555540000,21.181803) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509555600000,25.721298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509555660000,21.316994) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509555720000,20.057978) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509555780000,20.799023) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509555840000,21.981928) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509555900000,20.383825) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509555960000,22.675243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509556020000,24.610025) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509556080000,23.14952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509556140000,21.551418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509556200000,24.935873) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509556260000,22.870901) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509556320000,21.410397) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509556380000,25.207642) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509556440000,23.747137) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509556500000,21.937735) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509556560000,25.872578) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509556620000,24.274475) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509556680000,24.364342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509556740000,22.903837) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509556800000,20.489782) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509556860000,24.89168) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509556920000,23.431175) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509556980000,21.366018) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509557040000,20.107002) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509557100000,24.5089) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509557160000,21.893356) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509557220000,20.432852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509557280000,25.979792) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509557340000,21.575487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509557400000,23.866905) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509557460000,21.856012) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509557520000,23.589304) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509557580000,24.394243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509557640000,22.933739) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509557700000,24.66703) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509557760000,24.857689) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509557820000,23.461077) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509557880000,25.194368) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509557940000,23.733864) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509558000000,24.474909) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509558060000,20.272093) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509558120000,25.811573) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509558180000,20.55262) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509558240000,22.285912) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509558300000,20.687809) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509558360000,24.622837) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509558420000,22.007292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509558480000,20.546787) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509558540000,24.948685) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509558600000,23.085018) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509558660000,21.624512) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509558720000,25.61362) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509558780000,23.410866) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509558840000,23.500732) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509558900000,22.241718) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509558960000,20.781212) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509559020000,24.578459) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509559080000,22.567566) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509559140000,21.30855) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509559200000,25.243393) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509559260000,23.64529) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509559320000,22.184786) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509559380000,20.576687) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509559440000,25.116182) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509559500000,25.068453) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509559560000,20.801744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509559620000,21.542791) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509559680000,25.733387) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509559740000,21.329082) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509559800000,22.07013) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509559860000,20.609623) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509559920000,22.544405) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509559980000,20.946304) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509560040000,21.136961) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509560100000,22.870253) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509560160000,21.611238) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509560220000,23.76506) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509560280000,25.498352) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509560340000,23.48746) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509560400000,24.228504) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509560460000,25.219732) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509560520000,23.759228) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509560580000,22.298723) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509560640000,25.683178) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509560700000,24.286564) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509560760000,22.826061) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509560820000,20.760902) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509560880000,25.300398) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509560940000,25.252668) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509561000000,22.838614) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509561060000,21.378107) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509561120000,25.917603) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509561180000,24.319502) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509561240000,22.455833) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509561300000,20.44494) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509561360000,24.984436) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509561420000,22.781681) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509561480000,22.328623) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509561540000,20.868118) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509561600000,24.252573) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509561660000,24.204844) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509561720000,22.744339) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509561780000,24.67912) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509561840000,25.420166) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509561900000,23.822063) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509561960000,25.004969) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509562020000,25.947504) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509562080000,24.487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509562140000,20.082693) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509562200000,24.622189) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509562260000,25.014336) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509562320000,20.74763) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509562380000,20.6999) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509562440000,21.440945) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509562500000,23.174236) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509562560000,20.558876) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509562620000,21.162327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509562680000,22.895618) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509562740000,21.435114) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509562800000,20.176098) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509562860000,23.973343) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509562920000,21.96245) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509562980000,20.501945) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509563040000,24.638279) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509563100000,24.59055) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509563160000,23.130043) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509563220000,20.514498) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509563280000,25.053993) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509563340000,23.657381) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509563400000,22.196877) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509563460000,20.13172) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509563520000,24.120827) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509563580000,22.634863) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509563640000,20.569706) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509563700000,25.109201) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509563760000,25.199068) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509563820000,20.794764) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509563880000,21.18691) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509563940000,25.726406) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509564000000,21.459698) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509564060000,22.063147) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509564120000,20.804132) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509564180000,21.987036) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509564240000,22.728083) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509564300000,21.12998) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509564360000,23.064762) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509564420000,21.604256) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509564480000,23.345287) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509564540000,24.940983) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509564600000,23.480476) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509564660000,23.617056) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509564720000,25.350348) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509564780000,23.752245) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509564840000,23.942904) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509564900000,25.877686) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509564960000,24.41718) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509565020000,22.819078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509565080000,20.753922) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509565140000,24.944519) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509565200000,25.034386) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509565260000,22.83163) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509565320000,21.371126) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509565380000,25.910622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509565440000,23.496567) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509565500000,21.898464) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509565560000,20.43796) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509565620000,24.977455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509565680000,23.919743) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509565740000,22.321642) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509565800000,20.31075) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509565860000,24.245592) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509565920000,24.335459) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509565980000,22.938847) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509566040000,24.672138) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509566100000,24.862797) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509566160000,23.402292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509566220000,25.199476) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509566280000,25.940521) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509566340000,24.480019) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509566400000,25.662922) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509566460000,20.46786) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509566520000,25.007355) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509566580000,20.740646) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509566640000,20.830515) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509566700000,21.433964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509566760000,22.0124) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509566820000,20.551895) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509566880000,21.292942) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509566940000,22.888636) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509567000000,21.629622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509567060000,21.820278) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509567120000,23.55357) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509567180000,21.95547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509567240000,20.696453) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509567300000,24.631296) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509567360000,24.170776) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509567420000,22.572674) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509567480000,20.507517) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509567540000,25.2485) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509567600000,23.787996) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509567660000,22.189896) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509567720000,25.57435) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509567780000,25.121292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509567840000,23.660786) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509567900000,21.458033) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509567960000,25.997528) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509568020000,25.537006) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509568080000,23.67334) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509568140000,22.075237) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509568200000,20.614733) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509568260000,22.348024) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509568320000,22.740171) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509568380000,21.14207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509568440000,22.875362) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509568500000,23.616407) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509568560000,22.357391) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509568620000,23.953087) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509568680000,24.143745) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509568740000,24.233612) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509568800000,25.966904) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509568860000,23.764336) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509568920000,24.505383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509568980000,25.688286) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509569040000,24.227781) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509569100000,25.032719) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509569160000,20.766012) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509569220000,25.305506) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509569280000,25.496164) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509569340000,21.293348) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509569400000,25.832844) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509569460000,25.92271) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509569520000,23.857555) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509569580000,22.259453) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509569640000,20.450048) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509569700000,24.384892) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509569760000,22.924387) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509569820000,21.326286) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509569880000,20.873226) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509569940000,24.257683) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509570000000,22.797176) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509570060000,21.199076) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509570120000,25.335407) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509570180000,25.425274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509570240000,23.414383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509570300000,21.211628) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509570360000,25.751123) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509570420000,24.492107) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509570480000,20.225399) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509570540000,20.828848) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509570600000,24.817955) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509570660000,20.752737) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509570720000,21.493782) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509570780000,25.895681) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509570840000,21.628973) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509570900000,23.370003) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509570960000,21.30503) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509571020000,22.900726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509571080000,21.440222) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509571140000,22.181267) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509571200000,23.56566) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509571260000,21.96756) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509571320000,22.708605) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509571380000,24.441896) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509571440000,23.182882) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509571500000,21.58478) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509571560000,24.969234) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509571620000,25.059101) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509571680000,23.598598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509571740000,21.597332) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509571800000,20.136827) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509571860000,24.125935) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509571920000,22.060778) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509571980000,21.470121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509572040000,20.009617) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509572100000,24.549112) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509572160000,21.933567) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509572220000,20.536955) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509572280000,20.626822) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509572340000,24.561665) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509572400000,23.10116) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509572460000,21.50306) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509572520000,25.089003) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509572580000,23.628498) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509572640000,22.167994) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509572700000,23.763687) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509572760000,24.706223) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509572820000,22.695332) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509572880000,24.428623) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509572940000,25.032072) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509573000000,25.121939) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509573060000,20.250763) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509573120000,20.441422) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509573180000,24.84332) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509573240000,20.576612) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509573300000,25.317596) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509573360000,20.058643) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509573420000,21.654337) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509573480000,25.643444) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509573540000,20.58598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509573600000,22.319271) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509573660000,20.72117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509573720000,20.811037) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509573780000,24.195492) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509573840000,22.936478) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509573900000,21.338375) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509573960000,25.273218) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509574020000,23.812714) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509574080000,22.809267) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509574140000,20.606512) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509574200000,25.146008) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509574260000,23.685503) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509574320000,22.426487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509574380000,20.223734) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509574440000,25.763212) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509574500000,24.302708) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509574560000,22.23755) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509574620000,20.840939) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509574680000,25.380434) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509574740000,22.764889) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509574800000,21.304384) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509574860000,25.907772) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509574920000,21.641064) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509574980000,22.382109) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509575040000,20.371216) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509575100000,21.362444) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509575160000,23.653862) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509575220000,22.193357) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509575280000,23.92665) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509575340000,22.328548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509575400000,22.720695) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509575460000,24.453987) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509575520000,22.993483) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509575580000,23.596931) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509575640000,25.531712) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509575700000,23.52082) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509575760000,24.261866) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509575820000,25.857561) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509575880000,25.947428) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509575940000,24.688412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509576000000,22.072868) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509576060000,20.474766) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509576120000,25.014261) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509576180000,23.95655) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509576240000,22.496044) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509576300000,20.897943) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509576360000,24.282398) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509576420000,23.023382) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509576480000,21.562878) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509576540000,21.515148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509576600000,25.449991) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509576660000,23.439098) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509576720000,22.180082) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509576780000,25.97733) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509576840000,24.516825) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509576900000,23.05632) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509576960000,20.642263) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509577020000,25.044163) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509577080000,23.583656) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509577140000,25.316948) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509577200000,25.453527) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509577260000,25.405798) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509577320000,20.588701) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509577380000,21.329748) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509577440000,25.869244) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509577500000,21.666428) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509577560000,20.205923) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509577620000,20.396582) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509577680000,22.129873) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509577740000,20.733261) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509577800000,21.474306) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509577860000,23.207598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509577920000,21.196705) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509577980000,23.350527) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509578040000,25.285309) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509578100000,23.824802) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509578160000,22.364298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509578220000,20.161545) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509578280000,25.158098) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509578340000,23.697594) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509578400000,21.632435) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509578460000,20.034334) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509578520000,24.775318) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509578580000,22.159773) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509578640000,20.699268) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509578700000,20.651539) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509578760000,25.191034) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509578820000,23.327366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509578880000,21.316473) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509578940000,25.718372) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509579000000,23.653215) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509579060000,22.3942) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509579120000,20.933695) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509579180000,22.529388) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509579240000,22.720047) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509579300000,20.655075) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509579360000,22.388367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509579420000,24.542189) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509579480000,23.081684) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509579540000,24.264587) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509579600000,25.207123) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509579660000,23.60902) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509579720000,25.342312) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509579780000,23.88181) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509579840000,24.273956) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509579900000,25.869652) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509579960000,24.409145) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509580020000,25.150192) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509580080000,21.084972) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509580140000,21.037243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509580200000,21.227901) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509580260000,22.961193) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509580320000,21.500689) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509580380000,21.805342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509580440000,25.740185) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509580500000,23.729292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509580560000,22.268787) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509580620000,20.26752) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509580680000,24.807016) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509580740000,23.346512) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509580800000,20.730967) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509580860000,20.683237) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509580920000,25.424221) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509580980000,23.963717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509581040000,21.89856) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509581100000,20.300459) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509581160000,24.491055) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509581220000,22.425898) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509581280000,20.965393) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509581340000,25.36729) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509581400000,20.496115) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509581460000,20.686773) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509581520000,20.776642) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509581580000,22.372335) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509581640000,23.113382) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509581700000,21.854366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509581760000,23.03727) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509581820000,23.64072) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509581880000,22.180214) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509581940000,24.114996) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509582000000,22.654491) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509582060000,23.25794) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509582120000,24.440845) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509582180000,23.18183) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509582240000,25.473248) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509582300000,21.068943) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509582360000,25.608437) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509582420000,25.799095) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509582480000,22.539833) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509582540000,20.941732) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509582600000,25.481228) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509582660000,23.416069) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509582720000,21.606667) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509582780000,20.008564) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509582840000,23.943407) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509582900000,22.482903) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509582960000,22.57277) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509583020000,21.176157) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509583080000,24.560612) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509583140000,23.100107) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509583200000,21.639603) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509583260000,25.638338) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509583320000,24.177834) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509583380000,22.16694) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509583440000,20.101784) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509583500000,23.899214) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509583560000,22.43871) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509583620000,24.172) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509583680000,25.913033) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509583740000,24.31493) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509583800000,20.24971) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509583860000,20.990757) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509583920000,25.530252) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509583980000,21.125946) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509584040000,21.518095) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509584100000,20.05759) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509584160000,21.790882) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509584220000,20.19278) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509584280000,21.135315) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509584340000,22.318218) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509584400000,22.408087) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509584460000,23.011536) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509584520000,24.744827) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509584580000,24.291769) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509584640000,24.482428) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509584700000,20.078123) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509584760000,24.617619) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509584820000,23.358603) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509584880000,21.293444) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509584940000,25.695343) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509585000000,23.68445) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509585060000,21.820782) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509585120000,21.91065) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509585180000,20.312548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509585240000,24.852043) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509585300000,22.236498) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509585360000,20.977482) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509585420000,25.379381) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509585480000,23.314224) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509585540000,21.85372) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509585600000,25.23836) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509585660000,23.035604) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509585720000,21.5751) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509585780000,21.664967) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509585840000,23.398258) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509585900000,24.203197) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509585960000,22.192305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509586020000,23.925596) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509586080000,24.666643) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509586140000,23.270031) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509586200000,25.003323) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509586260000,25.193981) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509586320000,23.733475) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509586380000,25.530659) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509586440000,24.070156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509586500000,20.361572) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509586560000,21.544477) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509586620000,25.946377) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509586680000,21.694868) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509586740000,23.42816) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509586800000,21.967655) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509586860000,20.369553) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509586920000,23.955498) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509586980000,22.494993) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509587040000,21.034487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509587100000,24.831734) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509587160000,23.572718) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509587220000,23.112198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509587280000,21.04704) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509587340000,25.448938) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509587400000,23.988434) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509587460000,22.729418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509587520000,20.113873) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509587580000,24.515772) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509587640000,23.055267) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509587700000,20.385641) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509587760000,24.925137) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509587820000,23.327036) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509587880000,20.71149) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509587940000,20.801357) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509588000000,25.542343) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509588060000,21.138037) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509588120000,21.879084) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509588180000,25.86819) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509588240000,21.80297) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509588300000,22.406422) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509588360000,20.945915) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509588420000,22.679207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509588480000,23.071356) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509588540000,21.473253) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509588600000,23.206545) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509588660000,23.296413) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509588720000,24.03746) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509588780000,20.6406) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509588840000,24.629707) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509588900000,25.370754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509588960000,21.104046) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509589020000,25.707432) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509589080000,24.24693) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509589140000,21.631384) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509589200000,20.170877) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509589260000,24.774265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509589320000,22.709108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509589380000,22.798977) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509589440000,20.788084) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509589500000,24.58533) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509589560000,23.326313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509589620000,21.865808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509589680000,20.405304) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509589740000,24.202549) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509589800000,21.587189) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509589860000,20.126684) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509589920000,24.061527) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509589980000,22.463427) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509590040000,22.553293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509590100000,20.139236) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509590160000,24.678734) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509590220000,23.080631) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509590280000,24.813923) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509590340000,25.756458) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509590400000,23.745565) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509590460000,25.34126) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509590520000,20.082306) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509590580000,24.823292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509590640000,20.556583) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509590700000,24.95848) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509590760000,20.699512) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509590820000,22.432804) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509590880000,21.979744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509590940000,22.583195) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509591000000,24.316486) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509591060000,22.305593) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509591120000,23.248129) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509591180000,24.843822) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509591240000,23.38332) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509591300000,21.922813) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509591360000,25.508759) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509591420000,23.910656) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509591480000,24.000523) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509591540000,21.935366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509591600000,20.474861) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509591660000,25.078249) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509591720000,22.462704) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509591780000,21.0022) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509591840000,25.541695) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509591900000,23.339125) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509591960000,21.273968) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509592020000,25.263077) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509592080000,23.80257) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509592140000,21.801306) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509592200000,21.891174) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509592260000,20.430668) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509592320000,23.815123) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509592380000,22.217022) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509592440000,20.958006) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509592500000,22.691298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509592560000,23.432344) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509592620000,21.834242) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509592680000,23.218636) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509592740000,23.959682) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509592800000,22.499176) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509592860000,24.094872) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509592920000,24.184738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509592980000,25.382843) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509593040000,21.116135) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509593100000,25.518034) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509593160000,20.259079) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509593220000,22.193861) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509593280000,20.182968) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509593340000,20.786417) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509593400000,22.519709) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509593460000,21.260695) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509593520000,25.800188) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509593580000,23.597435) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509593640000,23.136913) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509593700000,21.676409) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509593760000,25.81274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509593820000,24.21464) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509593880000,22.754135) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509593940000,20.13859) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509594000000,24.073618) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509594060000,22.475515) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509594120000,21.01501) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509594180000,24.949854) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509594240000,23.14045) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509594300000,23.09272) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509594360000,21.027563) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509594420000,25.567059) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509594480000,24.106554) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509594540000,25.903738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509594600000,20.094397) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509594660000,24.633892) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509594720000,20.367184) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509594780000,21.172123) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509594840000,25.711617) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509594900000,20.894522) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509594960000,21.635567) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509595020000,21.587837) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509595080000,24.328575) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509595140000,22.86807) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509595200000,23.05873) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509595260000,24.654425) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509595320000,23.395409) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509595380000,24.136456) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509595440000,25.869747) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509595500000,24.271645) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509595560000,24.663792) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509595620000,20.397083) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509595680000,24.936579) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509595740000,24.88885) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509595800000,22.823692) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509595860000,21.01429) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509595920000,25.553783) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509595980000,23.35103) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509596040000,21.890526) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509596100000,25.825554) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509596160000,23.210009) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509596220000,21.611906) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509596280000,20.151402) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509596340000,24.892385) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509596400000,22.827229) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509596460000,22.7795) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509596520000,20.768606) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509596580000,24.70345) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509596640000,23.444433) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509596700000,21.846333) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509596760000,23.579624) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509596820000,23.770283) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509596880000,22.511267) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509596940000,24.106962) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509597000000,24.848007) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509597060000,23.387503) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509597120000,24.682545) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509597180000,20.836367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509597240000,25.375862) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509597300000,21.109154) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509597360000,25.64865) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509597420000,20.453587) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509597480000,21.636492) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509597540000,20.175987) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509597600000,20.917032) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509597660000,22.714216) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509597720000,21.253712) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509597780000,21.44437) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509597840000,23.177662) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509597900000,23.129932) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509597960000,21.870918) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509598020000,25.80576) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509598080000,23.794867) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509598140000,22.196766) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509598200000,25.527142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509598260000,24.066635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509598320000,22.60613) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509598380000,21.00803) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509598440000,24.593973) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509598500000,23.133469) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509598560000,23.223337) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509598620000,21.020582) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509598680000,25.560078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509598740000,23.750675) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509598800000,21.685516) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509598860000,20.087416) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509598920000,24.626911) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509598980000,20.561691) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509599040000,20.75235) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509599100000,25.154247) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509599160000,20.887539) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509599220000,22.636032) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509599280000,22.725899) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509599340000,24.321594) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509599400000,24.512253) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509599460000,23.051748) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509599520000,24.986528) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509599580000,23.388428) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509599640000,24.129473) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509599700000,25.312378) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509599760000,24.053362) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509599820000,24.65681) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509599880000,20.390102) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509599940000,24.929598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509600000000,20.670628) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509600060000,22.467812) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509600120000,21.007307) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509600180000,25.546803) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509600240000,23.481646) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509600300000,21.279076) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509600360000,25.268185) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509600420000,23.203026) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509600480000,21.742521) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509600540000,20.34591) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509600600000,24.885405) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509600660000,22.26986) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509600720000,22.359726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509600780000,20.761625) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509600840000,24.897957) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509600900000,23.437452) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509600960000,21.42656) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509601020000,25.223804) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509601080000,23.96479) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509601140000,22.504286) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509601200000,24.237577) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509601260000,24.841026) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509601320000,23.83758) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509601380000,25.570871) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509601440000,21.86229) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509601500000,20.264189) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509601560000,21.99748) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509601620000,22.389627) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509601680000,20.929123) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509601740000,22.524818) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509601800000,21.064312) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509601860000,22.006847) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509601920000,23.189753) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509601980000,21.59165) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509602040000,22.332697) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509602100000,24.267477) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509602160000,24.357346) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509602220000,22.759243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509602280000,20.143698) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509602340000,24.683193) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509602400000,22.618221) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509602460000,20.415466) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509602520000,24.954962) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509602580000,22.944069) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509602640000,21.080402) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509602700000,25.4823) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509602760000,24.021795) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509602820000,24.111664) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509602880000,21.496117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509602940000,20.099504) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509603000000,24.639) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509603060000,22.573843) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509603120000,21.113338) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509603180000,25.716724) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509603240000,23.101181) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509603300000,21.640676) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509603360000,20.180172) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509603420000,22.783312) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509603480000,23.524357) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509603540000,23.063837) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509603600000,24.79713) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509603660000,25.400578) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509603720000,24.141563) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509603780000,25.874855) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509603840000,20.065514) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509603900000,24.467411) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509603960000,20.402193) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509604020000,24.941689) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509604080000,25.682734) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509604140000,21.278429) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509604200000,25.469025) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509604260000,21.760445) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509604320000,23.493736) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509604380000,21.895634) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509604440000,20.43513) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509604500000,23.215117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509604560000,21.754612) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509604620000,20.15651) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509604680000,24.091352) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509604740000,22.832336) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509604800000,20.821445) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509604860000,24.61869) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509604920000,23.158186) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509604980000,23.248053) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509605040000,21.989037) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509605100000,25.786283) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509605160000,23.77539) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509605220000,22.314886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509605280000,20.451218) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509605340000,24.853115) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509605400000,23.392612) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509605460000,20.777067) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509605520000,20.324007) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509605580000,24.725906) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509605640000,20.459198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509605700000,22.750616) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509605760000,20.739723) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509605820000,22.536907) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509605880000,23.277954) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509605940000,21.81745) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509606000000,23.550741) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509606060000,22.154129) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509606120000,22.344786) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509606180000,24.07808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509606240000,22.617573) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509606300000,23.422512) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509606360000,25.155804) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509606420000,24.695284) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509606480000,25.436329) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509606540000,21.032024) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509606600000,24.967052) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509606660000,23.506548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509606720000,20.891003) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509606780000,25.2929) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509606840000,24.033886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509606900000,21.968727) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509606960000,20.508223) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509607020000,24.910122) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509607080000,22.496065) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509607140000,22.585934) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509607200000,21.125427) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509607260000,25.527327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509607320000,23.46217) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509607380000,21.652765) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509607440000,20.19226) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509607500000,23.989506) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509607560000,22.529001) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509607620000,22.075943) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509607680000,25.460398) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509607740000,23.862297) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509607800000,23.952164) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509607860000,25.685455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509607920000,20.62799) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509607980000,25.029888) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509608040000,20.212793) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509608100000,20.953838) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509608160000,25.694824) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509608220000,21.29052) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509608280000,25.830013) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509608340000,20.020672) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509608400000,21.955454) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509608460000,20.357351) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509608520000,22.64877) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509608580000,24.382061) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509608640000,22.37117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509608700000,22.370152) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509608760000,24.103443) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509608820000,22.642939) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509608880000,21.182434) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509608940000,25.181168) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509609000000,23.170277) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509609060000,21.70977) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509609120000,25.644613) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509609180000,24.248001) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509609240000,24.337868) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509609300000,21.722322) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509609360000,20.261818) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509609420000,24.663717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509609480000,23.404701) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509609540000,21.339544) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509609600000,25.328651) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509609660000,23.730549) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509609720000,22.672838) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509609780000,21.212334) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509609840000,25.75183) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509609900000,21.347525) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509609960000,23.088554) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509610020000,21.829538) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509610080000,23.562832) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509610140000,24.166279) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509610200000,22.705774) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509610260000,24.090168) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509610320000,24.831215) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509610380000,23.233112) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509610440000,24.966404) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509610500000,23.70739) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509610560000,23.898046) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509610620000,25.493742) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509610680000,25.58361) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509610740000,20.324656) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509610800000,21.45348) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509610860000,25.855377) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509610920000,20.046036) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509610980000,21.77933) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509611040000,20.520313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509611100000,24.92221) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509611160000,22.857054) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509611220000,20.84616) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509611280000,25.587147) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509611340000,23.384392) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509611400000,23.474258) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509611460000,22.013754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509611520000,25.398209) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509611580000,24.001596) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509611640000,22.541092) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509611700000,21.080587) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509611760000,25.01543) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509611820000,24.424774) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509611880000,22.413881) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509611940000,20.348724) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509612000000,24.88822) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509612060000,24.84049) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509612120000,20.77527) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509612180000,20.965929) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509612240000,25.505424) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509612300000,21.10112) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509612360000,22.043655) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509612420000,20.58315) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509612480000,21.766054) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509612540000,22.369503) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509612600000,21.110487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509612660000,22.84378) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509612720000,21.383274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509612780000,23.537096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509612840000,24.720001) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509612900000,22.655027) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509612960000,23.396074) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509613020000,24.991768) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509613080000,23.531263) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509613140000,23.923412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509613200000,25.656704) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509613260000,24.058601) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509613320000,22.598097) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509613380000,20.734428) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509613440000,24.723537) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509613500000,24.675808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509613560000,22.61065) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509613620000,21.150145) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509613680000,25.891129) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509613740000,24.293028) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509613800000,21.677483) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509613860000,20.216978) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509613920000,20.659227) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509613980000,24.456472) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509614040000,22.995968) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509614100000,20.985075) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509614160000,25.121407) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509614220000,25.073677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509614280000,23.613173) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509614340000,25.346464) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509614400000,25.537123) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509614460000,24.14051) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509614520000,25.873802) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509614580000,20.61485) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509614640000,25.154343) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509614700000,20.951527) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509614760000,21.142185) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509614820000,25.68168) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509614880000,21.414972) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509614940000,21.367243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509615000000,21.503822) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509615060000,22.686726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509615120000,21.226221) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509615180000,21.82967) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509615240000,23.764452) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509615300000,22.303947) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509615360000,22.494606) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509615420000,24.0903) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509615480000,22.831284) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509615540000,21.370779) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509615600000,25.305622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509615660000,25.257893) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509615720000,23.247002) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509615780000,21.383333) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509615840000,25.922829) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509615900000,24.324726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509615960000,22.864222) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509616020000,21.256123) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509616080000,25.795616) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509616140000,24.197515) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509616200000,22.132359) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509616260000,20.873343) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509616320000,20.412823) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509616380000,24.210068) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509616440000,22.749563) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509616500000,21.289059) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509616560000,23.223839) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509616620000,23.82729) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509616680000,21.816397) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509616740000,23.549688) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509616800000,24.492224) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509616860000,22.894121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509616920000,24.627415) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509616980000,24.818071) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509617040000,24.90794) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509617100000,25.899166) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509617160000,24.438662) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509617220000,25.179708) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509617280000,20.362612) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509617340000,24.966) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509617400000,25.707047) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509617460000,21.440338) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509617520000,25.979832) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509617580000,24.58322) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509617640000,21.967674) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509617700000,20.50717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509617760000,20.597038) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509617820000,24.394283) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509617880000,23.13527) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509617940000,21.124376) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509618000000,25.059217) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509618060000,23.461117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509618120000,23.008057) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509618180000,21.547552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509618240000,24.932007) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509618300000,23.333906) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509618360000,22.07489) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509618420000,20.009733) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509618480000,20.099602) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509618540000,24.5015) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509618600000,21.885954) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509618660000,20.626938) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509618720000,25.166433) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509618780000,20.762129) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509618840000,21.503174) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509618900000,25.693771) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509618960000,21.427063) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509619020000,22.030512) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509619080000,20.570007) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509619140000,21.698832) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509619200000,23.439861) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509619260000,21.84176) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509619320000,23.575052) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509619380000,22.114548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509619440000,23.057083) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509619500000,24.652779) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509619560000,22.641886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509619620000,23.38293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509619680000,25.317713) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509619740000,23.71961) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509619800000,22.259106) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509619860000,25.64356) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509619920000,25.733429) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509619980000,24.336815) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509620040000,22.271658) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509620100000,20.811153) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509620160000,24.80026) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509620220000,23.604954) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509620280000,22.144447) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509620340000,20.683943) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509620400000,25.223438) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509620460000,23.222174) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509620520000,21.21128) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509620580000,21.30115) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509620640000,25.235992) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509620700000,23.63789) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509620760000,22.378874) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509620820000,25.763329) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509620880000,24.302824) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509620940000,22.704723) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509621000000,24.639503) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509621060000,25.38055) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509621120000,23.369658) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509621180000,24.965351) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509621240000,25.10193) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509621300000,25.191797) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509621360000,20.925089) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509621420000,25.326988) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509621480000,25.517647) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509621540000,21.452427) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509621600000,25.991922) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509621660000,20.595371) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509621720000,22.328663) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509621780000,20.51926) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509621840000,21.260307) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509621900000,22.856) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509621960000,21.395496) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509622020000,21.485365) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509622080000,25.071308) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509622140000,23.473206) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509622200000,22.012701) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509622260000,25.947544) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509622320000,25.494486) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509622380000,23.896383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509622440000,21.280838) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509622500000,25.820333) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509622560000,24.561317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509622620000,22.963217) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509622680000,20.89806) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509622740000,20.437538) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509622800000,24.977036) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509622860000,22.975769) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509622920000,21.515265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509622980000,20.05476) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509623040000,23.439215) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509623100000,22.042603) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509623160000,20.582098) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509623220000,22.31539) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509623280000,23.056435) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509623340000,20.853867) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509623400000,22.03677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509623460000,24.328188) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509623520000,22.867683) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509623580000,24.463379) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509623640000,23.204363) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509623700000,23.395021) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509623760000,25.128313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509623820000,23.530212) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509623880000,24.472748) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509623940000,20.20604) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509624000000,24.195147) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509624060000,24.798595) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509624120000,20.733376) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509624180000,20.823244) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509624240000,25.36274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509624300000,23.159985) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509624360000,21.149092) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509624420000,20.696033) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509624480000,24.630877) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509624540000,23.032774) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509624600000,21.57227) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509624660000,25.158215) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509624720000,23.697708) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509624780000,22.099607) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509624840000,22.189474) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509624900000,20.124317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509624960000,24.314915) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509625020000,22.716812) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509625080000,20.651655) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509625140000,25.19115) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509625200000,23.932135) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509625260000,25.52783) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509625320000,25.718487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509625380000,24.257984) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509625440000,25.386806) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509625500000,25.990257) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509625560000,20.080124) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509625620000,21.26303) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509625680000,22.004074) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509625740000,20.607462) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509625800000,22.340754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509625860000,20.880249) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509625920000,21.070908) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509625980000,22.868092) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509626040000,21.407587) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509626100000,22.148632) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509626160000,23.881924) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509626220000,22.485312) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509626280000,24.226341) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509626340000,25.959635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509626400000,24.49913) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509626460000,22.901028) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509626520000,21.843317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509626580000,25.832424) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509626640000,24.37192) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509626700000,22.169165) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509626760000,20.910149) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509626820000,25.449644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509626880000,22.834099) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509626940000,21.235998) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509627000000,21.325865) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509627060000,20.066849) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509627120000,24.001692) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509627180000,22.403591) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509627240000,20.392698) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509627300000,24.52903) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509627360000,23.068525) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509627420000,21.470423) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509627480000,23.203716) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509627540000,22.789906) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509627600000,21.329401) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509627660000,22.925097) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509627720000,25.216515) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509627780000,23.75601) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509627840000,25.140404) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509627900000,25.743853) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509627960000,24.283348) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509628020000,20.01664) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509628080000,24.757624) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509628140000,25.361073) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509628200000,20.543978) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509628260000,25.083473) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509628320000,20.026007) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509628380000,21.621702) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509628440000,21.71157) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509628500000,21.90223) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509628560000,23.63552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509628620000,23.044865) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509628680000,21.58436) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509628740000,25.519203) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509628800000,23.50831) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509628860000,22.111698) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509628920000,20.04654) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509628980000,24.586035) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509629040000,23.12553) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509629100000,23.0778) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509629160000,20.663746) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509629220000,25.20324) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509629280000,23.742735) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509629340000,21.539982) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509629400000,20.280966) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509629460000,24.270073) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509629520000,22.204916) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509629580000,20.606813) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509629640000,24.541842) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509629700000,20.275133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509629760000,20.465792) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509629820000,20.418062) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509629880000,22.151354) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509629940000,23.09389) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509630000000,21.633385) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509630060000,23.22908) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509630120000,23.419739) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509630180000,22.160723) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509630240000,23.894014) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509630300000,22.295914) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509630360000,23.036959) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509630420000,24.421352) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509630480000,22.960848) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509630540000,25.11467) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509630600000,20.84796) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509630660000,25.387455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509630720000,25.690252) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509630780000,21.285948) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509630840000,25.825443) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509630900000,24.364937) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509630960000,22.50127) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509631020000,20.903168) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509631080000,24.892275) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509631140000,22.827118) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509631200000,21.568102) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509631260000,21.520372) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509631320000,20.059868) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509631380000,23.444323) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509631440000,21.983818) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509631500000,20.587206) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509631560000,24.522049) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509631620000,23.061544) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509631680000,21.050652) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509631740000,24.24343) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509631800000,22.782925) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509631860000,21.32242) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509631920000,23.055712) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509631980000,25.209534) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509632040000,23.40013) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509632100000,25.13342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509632160000,25.874468) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509632220000,24.276367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509632280000,20.211147) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509632340000,20.401806) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509632400000,24.9413) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509632460000,20.536995) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509632520000,25.27798) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509632580000,20.019026) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509632640000,21.201931) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509632700000,21.154202) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509632760000,21.895247) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509632820000,24.635984) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509632880000,23.17548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509632940000,21.577377) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509633000000,24.961834) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509633060000,23.702818) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509633120000,22.242313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509633180000,20.039558) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509633240000,24.579054) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509633300000,22.76965) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509633360000,20.704493) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509633420000,20.656763) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509633480000,25.196259) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509633540000,23.735754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509633600000,21.321697) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509633660000,25.723597) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509633720000,24.263092) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509633780000,22.197933) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509633840000,20.132961) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509633900000,24.53486) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509633960000,21.919315) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509634020000,20.45881) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509634080000,20.548677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509634140000,22.345861) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509634200000,23.086908) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509634260000,21.076015) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509634320000,22.809307) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509634380000,23.614246) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509634440000,22.15374) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509634500000,23.887032) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509634560000,24.07769) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509634620000,22.681078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509634680000,24.414371) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509634740000,22.953865) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509634800000,25.245285) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509634860000,20.840979) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509634920000,25.837532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509634980000,20.578579) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509635040000,22.31187) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509635100000,20.713768) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509635160000,25.454754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509635220000,22.839209) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509635280000,21.378702) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509635340000,25.780602) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509635400000,23.916933) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509635460000,22.456429) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509635520000,21.995909) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509635580000,25.793154) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509635640000,24.33265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509635700000,23.073633) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509635760000,21.613129) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509635820000,25.410374) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509635880000,23.399483) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509635940000,21.33451) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509636000000,25.269352) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509636060000,23.671251) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509636120000,22.210747) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509636180000,25.79669) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509636240000,25.886559) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509636300000,24.288456) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509636360000,20.021748) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509636420000,20.762794) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509636480000,24.95339) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509636540000,20.549086) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509636600000,21.29013) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509636660000,25.829628) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509636720000,21.764408) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509636780000,20.166306) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509636840000,20.356964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509636900000,22.090256) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509636960000,22.180124) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509637020000,23.79102) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509637080000,25.524311) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509637140000,23.513418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509637200000,24.254463) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509637260000,20.05165) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509637320000,24.591145) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509637380000,23.130638) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509637440000,20.515093) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509637500000,25.11848) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509637560000,23.657976) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509637620000,21.59282) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509637680000,21.682686) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509637740000,20.084585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509637800000,23.670528) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509637860000,22.210024) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509637920000,20.74952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509637980000,25.151417) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509638040000,22.481792) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509638100000,20.4709) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509638160000,25.010395) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509638220000,22.807642) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509638280000,21.548626) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509638340000,21.638493) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509638400000,25.02295) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509638460000,23.424847) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509638520000,21.964342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509638580000,23.899122) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509638640000,24.64017) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509638700000,23.042067) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509638760000,24.224972) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509638820000,25.167507) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509638880000,23.707) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509638940000,25.302696) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509639000000,23.842192) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509639060000,25.583221) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509639120000,22.32396) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509639180000,20.725859) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509639240000,21.466904) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509639300000,23.200197) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509639360000,21.390793) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509639420000,21.994242) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509639480000,23.727535) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509639540000,22.267029) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509639600000,21.008015) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509639660000,24.80526) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509639720000,22.794367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509639780000,22.884235) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509639840000,20.819077) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509639900000,25.422464) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509639960000,23.96196) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509640020000,21.346415) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509640080000,25.88591) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509640140000,23.68334) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509640200000,22.222836) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509640260000,20.157679) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509640320000,24.146786) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509640380000,22.750174) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509640440000,20.685017) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509640500000,20.774883) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509640560000,25.314379) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509640620000,20.910074) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509640680000,21.302221) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509640740000,25.841717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509640800000,21.575008) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509640860000,22.178457) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509640920000,20.919441) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509640980000,22.102346) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509641040000,22.843391) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509641100000,21.24529) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509641160000,23.986029) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509641220000,24.075895) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509641280000,24.266554) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509641340000,25.86225) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509641400000,24.401745) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509641460000,25.34428) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509641520000,21.077572) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509641580000,25.47947) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509641640000,25.670128) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509641700000,21.60491) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509641760000,20.144403) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509641820000,24.546303) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509641880000,22.481146) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509641940000,22.020626) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509642000000,20.76161) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509642060000,24.558855) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509642120000,23.09835) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509642180000,21.637846) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509642240000,24.417833) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509642300000,22.81973) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509642360000,21.359226) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509642420000,25.898722) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509642480000,24.035053) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509642540000,22.43695) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509642600000,21.976433) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509642660000,25.911274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509642720000,24.45077) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509642780000,23.054157) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509642840000,24.787449) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509642900000,24.978107) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509642960000,23.517603) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509643020000,25.314787) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509643080000,20.055832) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509643140000,24.595327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509643200000,25.778233) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509643260000,21.389128) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509643320000,21.478994) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509643380000,23.212286) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509643440000,21.751781) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509643500000,22.35523) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509643560000,23.739624) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509643620000,22.27912) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509643680000,23.020164) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509643740000,24.61586) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509643800000,23.356844) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509643860000,23.547503) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509643920000,25.280794) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509643980000,23.682693) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509644040000,23.77256) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509644100000,21.908892) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509644160000,25.897999) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509644220000,24.299898) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509644280000,22.234741) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509644340000,20.16977) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509644400000,24.709263) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509644460000,23.111162) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509644520000,20.495617) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509644580000,25.2366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509644640000,23.776096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509644700000,21.573341) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509644760000,21.66321) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509644820000,25.652317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509644880000,23.788649) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509644940000,22.190548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509645000000,20.730043) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509645060000,22.463335) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509645120000,22.855482) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509645180000,21.257381) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509645240000,22.990673) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509645300000,23.731718) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509645360000,23.27866) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509645420000,24.874355) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509645480000,20.615385) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509645540000,25.15488) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509645600000,20.888172) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509645660000,25.49156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509645720000,20.232605) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509645780000,21.41551) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509645840000,25.955006) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509645900000,20.759943) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509645960000,22.493235) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509646020000,21.03273) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509646080000,21.223389) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509646140000,23.020573) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509646200000,23.110441) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509646260000,21.649935) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509646320000,25.584778) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509646380000,23.986677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509646440000,21.371317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509646500000,25.30616) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509646560000,23.845654) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509646620000,22.247553) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509646680000,20.988537) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509646740000,24.372992) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509646800000,22.912487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509646860000,22.864758) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509646920000,20.7996) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509646980000,25.540585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509647040000,23.529694) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509647100000,21.326939) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509647160000,25.866434) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509647220000,24.607418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509647280000,20.34071) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509647340000,20.944159) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509647400000,24.933266) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509647460000,22.569313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509647520000,23.310358) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509647580000,23.262629) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509647640000,24.99592) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509647700000,25.186579) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509647760000,23.927563) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509647820000,25.523258) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509647880000,24.062754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509647940000,24.803799) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509648000000,20.188192) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509648060000,24.590092) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509648120000,25.331137) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509648180000,21.064428) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509648240000,25.805412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509648300000,25.757683) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509648360000,23.14214) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509648420000,21.681633) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509648480000,20.221128) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509648540000,23.413908) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509648600000,21.953402) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509648660000,25.94251) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509648720000,23.877354) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509648780000,22.48074) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509648840000,21.020235) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509648900000,25.55973) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509648960000,22.944185) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509649020000,22.896456) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509649080000,21.63744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509649140000,25.572283) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509649200000,24.111778) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509649260000,22.513678) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509649320000,20.09962) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509649380000,24.639116) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509649440000,23.178612) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509649500000,24.774307) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509649560000,20.522799) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509649620000,24.511906) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509649680000,20.245197) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509649740000,22.39902) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509649800000,20.938515) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509649860000,22.873295) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509649920000,23.063953) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509649980000,21.465853) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509650040000,23.199144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509650100000,21.940128) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509650160000,22.681175) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509650220000,24.276869) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509650280000,22.265976) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509650340000,23.208511) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509650400000,24.941803) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509650460000,24.894073) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509650520000,23.433569) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509650580000,20.818024) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509650640000,24.753052) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509650700000,23.154951) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509650760000,21.089792) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509650820000,25.629288) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509650880000,23.819885) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509650940000,21.61713) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509651000000,20.156626) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509651060000,24.696121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509651120000,24.785988) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509651180000,22.784723) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509651240000,20.77383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509651300000,25.313328) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509651360000,23.248169) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509651420000,21.851557) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509651480000,20.391052) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509651540000,23.775507) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509651600000,22.315002) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509651660000,21.724346) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509651720000,23.457638) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509651780000,24.198685) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509651840000,23.738163) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509651900000,25.333858) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509651960000,20.276394) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509652020000,24.81589) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509652080000,20.549181) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509652140000,24.95108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509652200000,25.343227) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509652260000,21.076519) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509652320000,25.616014) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509652380000,20.219463) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509652440000,22.154243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509652500000,20.143353) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509652560000,22.43477) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509652620000,24.030464) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509652680000,22.56996) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509652740000,20.504988) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509652800000,23.889442) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509652860000,22.291342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509652920000,20.830837) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509652980000,24.967169) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509653040000,23.506664) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509653100000,21.908562) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509653160000,25.293016) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509653220000,24.034) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509653280000,24.123869) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509653340000,22.525766) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509653400000,20.46061) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509653460000,24.449717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509653520000,23.1907) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509653580000,20.987947) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509653640000,25.527443) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509653700000,24.066936) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509653760000,22.45884) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509653820000,20.860737) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509653880000,25.400232) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509653940000,21.133524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509654000000,23.424942) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509654060000,22.02833) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509654120000,23.211233) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509654180000,23.95228) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509654240000,22.491776) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509654300000,24.28896) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509654360000,22.828455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509654420000,23.019112) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509654480000,24.752403) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509654540000,23.355793) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509654600000,24.096838) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509654660000,25.83013) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509654720000,25.36961) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509654780000,25.973059) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509654840000,21.101883) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509654900000,25.641378) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509654960000,24.180874) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509655020000,21.978119) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509655080000,20.168716) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509655140000,24.708212) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509655200000,22.643053) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509655260000,21.044952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509655320000,25.785936) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509655380000,23.170391) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509655440000,23.26026) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509655500000,21.662157) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509655560000,20.201653) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509655620000,24.337984) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509655680000,22.327091) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509655740000,20.72899) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509655800000,24.663834) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509655860000,24.210773) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509655920000,22.750269) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509655980000,24.345964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509656040000,24.536623) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509656100000,24.62649) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509656160000,20.561272) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509656220000,21.16472) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509656280000,25.704216) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509656340000,20.88712) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509656400000,21.829655) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509656460000,20.231552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509656520000,21.964844) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509656580000,20.50434) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509656640000,20.896488) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509656700000,22.492182) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509656760000,21.031677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509656820000,23.323095) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509656880000,25.056389) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509656940000,22.853819) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509657000000,23.044477) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509657060000,24.77777) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509657120000,23.317265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509657180000,21.920652) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509657240000,25.855495) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509657300000,23.844603) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509657360000,22.384096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509657420000,20.382832) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509657480000,24.922327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509657540000,25.012196) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509657600000,22.39665) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509657660000,20.798548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509657720000,25.539532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509657780000,24.079027) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509657840000,22.01387) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509657900000,20.415768) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509657960000,25.412323) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509658020000,23.347164) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509658080000,21.88666) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509658140000,20.288559) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509658200000,22.22334) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509658260000,23.96437) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509658320000,22.503864) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509658380000,24.09956) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509658440000,24.840607) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509658500000,23.58159) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509658560000,24.764494) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509658620000,25.367943) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509658680000,23.907438) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509658740000,25.84222) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509658800000,24.381714) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509658860000,24.985165) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509658920000,20.168068) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509658980000,20.257936) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509659040000,20.394514) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509659100000,21.99021) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509659160000,20.529705) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509659220000,20.720364) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509659280000,22.655144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509659340000,21.057041) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509659400000,25.596539) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509659460000,23.53138) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509659520000,21.721977) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509659580000,20.123875) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509659640000,24.058718) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509659700000,24.148586) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509659760000,22.68808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509659820000,21.291468) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509659880000,24.675922) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509659940000,23.215418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509660000000,21.754913) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509660060000,20.559605) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509660120000,25.0991) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509660180000,23.088207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509660240000,21.02305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509660300000,25.626438) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509660360000,25.716305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509660420000,21.449596) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509660480000,21.640255) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509660540000,20.042154) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509660600000,21.976934) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509660660000,22.717981) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509660720000,21.257477) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509660780000,22.85317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509660840000,23.24532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509660900000,21.784813) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509660960000,23.518105) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509661020000,21.920004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509661080000,24.211422) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509661140000,24.78986) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509661200000,23.329353) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509661260000,23.932804) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509661320000,25.666096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509661380000,24.40708) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509661440000,24.597738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509661500000,20.193432) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509661560000,24.73293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509661620000,23.473911) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509661680000,21.408754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509661740000,25.810654) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509661800000,25.350134) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509661860000,23.284975) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509661920000,22.025959) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509661980000,20.427858) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509662040000,24.967354) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509662100000,22.351809) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509662160000,21.89875) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509662220000,20.300648) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509662280000,24.23549) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509662340000,22.774986) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509662400000,20.965582) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509662460000,24.762829) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509662520000,24.852695) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509662580000,23.39219) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509662640000,25.125483) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509662700000,25.930422) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509662760000,23.919529) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509662820000,25.65282) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509662880000,20.393867) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509662940000,24.997253) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509663000000,20.730547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509663060000,20.921204) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509663120000,25.4607) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509663180000,20.451927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509663240000,20.541794) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509663300000,21.28284) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509663360000,22.465744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509663420000,20.867643) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509663480000,21.810179) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509663540000,23.54347) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509663600000,22.082966) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509663660000,20.484863) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509663720000,24.070808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509663780000,22.610302) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509663840000,21.149797) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509663900000,24.947044) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509663960000,25.036911) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509664020000,23.227509) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509664080000,21.16235) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509664140000,25.564249) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509664200000,24.103745) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509664260000,22.755377) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509664320000,20.139832) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509664380000,24.54173) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509664440000,23.081226) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509664500000,21.217558) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509664560000,25.757053) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509664620000,25.709324) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509664680000,23.093779) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509664740000,21.633274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509664800000,20.374258) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509664860000,21.969954) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509664920000,22.710999) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509664980000,20.700108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509665040000,22.634888) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509665100000,23.238337) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509665160000,21.777832) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509665220000,23.511124) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509665280000,23.097315) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509665340000,23.049585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509665400000,24.782877) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509665460000,23.322372) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509665520000,24.06342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509665580000,25.860603) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509665640000,23.84971) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509665700000,24.590755) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509665760000,20.324047) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509665820000,24.927435) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509665880000,23.46693) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509665940000,20.851385) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509666000000,25.39088) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509666060000,25.343151) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509666120000,23.479485) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509666180000,22.018978) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509666240000,20.008085) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509666300000,23.805332) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509666360000,23.352272) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509666420000,21.891768) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509666480000,20.431263) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509666540000,24.22851) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509666600000,22.419106) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509666660000,20.958601) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509666720000,24.893444) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509666780000,24.845715) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509666840000,23.38521) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509666900000,20.971153) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509666960000,25.510649) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509667020000,23.912548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509667080000,25.64584) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509667140000,20.588375) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509667200000,24.577482) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509667260000,20.173176) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509667320000,20.914223) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509667380000,24.84925) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509667440000,20.582542) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509667500000,20.534813) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509667560000,20.725471) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509667620000,22.458763) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509667680000,21.199747) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509667740000,21.803196) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509667800000,23.536488) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509667860000,21.525597) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509667920000,22.468132) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509667980000,24.063826) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509668040000,22.603321) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509668100000,21.142817) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509668160000,24.72876) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509668220000,24.68103) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509668280000,23.220528) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509668340000,21.155369) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509668400000,25.694864) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509668460000,25.10421) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509668520000,22.488663) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509668580000,21.028158) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509668640000,25.567654) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509668700000,24.171041) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509668760000,22.105885) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509668820000,20.094992) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509668880000,20.18486) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509668940000,23.982105) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509669000000,22.72309) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509669060000,21.262585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509669120000,24.64704) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509669180000,23.048939) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509669240000,21.789923) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509669300000,23.523214) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509669360000,24.26426) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509669420000,22.666159) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509669480000,23.244595) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509669540000,23.985641) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509669600000,24.075508) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509669660000,25.671204) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509669720000,24.2107) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509669780000,24.602846) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509669840000,20.336138) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509669900000,24.738037) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509669960000,25.479082) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509670020000,21.413864) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509670080000,25.402971) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509670140000,20.00642) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509670200000,21.739712) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509670260000,20.480696) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509670320000,20.570564) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509670380000,24.36781) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509670440000,22.356916) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509670500000,20.896412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509670560000,25.838701) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509670620000,24.240599) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509670680000,22.780094) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509670740000,20.164549) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509670800000,24.905533) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509670860000,23.307432) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509670920000,21.846928) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509670980000,25.78177) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509671040000,25.32125) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509671100000,23.924637) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509671160000,21.85948) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509671220000,20.398975) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509671280000,24.93847) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509671340000,20.735655) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509671400000,20.926313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509671460000,25.465809) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509671520000,21.1991) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509671580000,21.198082) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509671640000,25.737576) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509671700000,20.92048) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509671760000,23.211899) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509671820000,21.613798) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509671880000,23.548578) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509671940000,22.088074) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509672000000,22.278732) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509672060000,23.874428) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509672120000,22.615412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509672180000,23.356457) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509672240000,25.089748) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509672300000,23.491648) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509672360000,23.883795) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509672420000,25.617086) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509672480000,25.706955) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509672540000,24.108852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509672600000,22.043695) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509672660000,21.040249) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509672720000,25.579744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509672780000,23.37699) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509672840000,21.916485) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509672900000,20.657469) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509672960000,24.041924) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509673020000,22.443823) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509673080000,20.983318) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509673140000,21.073185) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509673200000,25.209518) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509673260000,23.611416) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509673320000,21.600523) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509673380000,25.535366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509673440000,24.27635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509673500000,22.67825) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509673560000,24.411541) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509673620000,24.6022) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509673680000,22.537226) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509673740000,24.132921) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509673800000,24.873966) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509673860000,24.963835) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509673920000,20.146738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509673980000,20.951677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509674040000,25.491173) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509674100000,21.224464) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509674160000,25.76396) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509674220000,20.568897) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509674280000,21.751802) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509674340000,20.291298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509674400000,21.032343) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509674460000,22.829527) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509674520000,21.369022) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509674580000,23.110054) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509674640000,24.843346) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509674700000,23.245243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509674760000,22.792185) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509674820000,20.727028) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509674880000,24.716135) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509674940000,23.118032) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509675000000,21.254364) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509675060000,25.79386) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509675120000,24.333355) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509675180000,22.735252) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509675240000,20.321198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509675300000,20.411064) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509675360000,24.950562) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509675420000,22.747807) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509675480000,21.287302) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509675540000,25.477898) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509675600000,23.41274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509675660000,21.814638) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509675720000,20.354134) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509675780000,21.482958) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509675840000,21.673616) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509675900000,20.075516) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509675960000,21.808807) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509676020000,24.100225) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509676080000,22.84121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509676140000,24.436905) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509676200000,24.627563) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509676260000,23.167059) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509676320000,25.10184) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509676380000,23.503738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509676440000,24.244783) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509676500000,25.427689) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509676560000,24.168673) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509676620000,24.772121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509676680000,20.505413) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509676740000,20.59528) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509676800000,20.785938) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509676860000,23.38908) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509676920000,21.928576) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509676980000,20.468071) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509677040000,24.402912) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509677100000,23.0063) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509677160000,20.995407) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509677220000,24.93025) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509677280000,23.469746) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509677340000,22.073133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509677400000,22.163) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509677460000,25.547455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509677520000,24.08695) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509677580000,22.48885) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509677640000,20.625181) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509677700000,25.164677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509677760000,23.153784) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509677820000,20.951029) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509677880000,24.886057) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509677940000,23.425552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509678000000,25.158844) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509678060000,25.762293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509678120000,25.301773) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509678180000,21.236553) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509678240000,21.9776) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509678300000,20.3795) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509678360000,22.112791) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509678420000,22.504938) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509678480000,21.044434) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509678540000,22.64013) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509678600000,21.179623) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509678660000,22.122158) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509678720000,23.305063) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509678780000,21.70696) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509678840000,23.998379) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509678900000,25.73167) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509678960000,25.278612) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509679020000,23.680511) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509679080000,21.064966) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509679140000,25.604462) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509679200000,24.345446) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509679260000,22.14269) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509679320000,20.682186) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509679380000,24.671293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509679440000,22.807625) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509679500000,21.209524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509679560000,21.29939) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509679620000,25.838886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509679680000,23.223341) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509679740000,21.826729) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509679800000,20.366224) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509679860000,24.301067) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509679920000,22.84056) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509679980000,20.637993) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509680040000,24.022448) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509680100000,22.561943) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509680160000,21.101439) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509680220000,22.898623) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509680280000,25.19004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509680340000,23.179148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509680400000,24.912441) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509680460000,25.515888) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509680520000,24.256874) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509680580000,25.990166) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509680640000,20.180824) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509680700000,24.582722) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509680760000,20.517504) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509680820000,25.057) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509680880000,25.798044) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509680940000,21.39374) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509681000000,20.933218) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509681060000,22.226868) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509681120000,23.96016) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509681180000,22.362057) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509681240000,20.901552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509681300000,24.487497) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509681360000,23.026993) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509681420000,21.42889) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509681480000,25.363733) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509681540000,24.104717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509681600000,22.093826) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509681660000,25.891071) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509681720000,25.980938) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509681780000,24.520433) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509681840000,23.261417) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509681900000,21.058664) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509681960000,25.047771) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509682020000,23.587267) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509682080000,20.91764) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509682140000,25.31954) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509682200000,23.859035) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509682260000,21.24349) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509682320000,25.984474) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509682380000,25.936745) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509682440000,21.670036) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509682500000,22.411083) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509682560000,20.40019) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509682620000,22.197374) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509682680000,22.938421) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509682740000,21.477917) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509682800000,23.211208) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509682860000,21.814594) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509682920000,22.005253) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509682980000,23.738544) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509683040000,22.278042) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509683100000,24.431862) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509683160000,21.1726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509683220000,25.161707) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509683280000,25.902754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509683340000,21.498447) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509683400000,20.239433) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509683460000,24.778927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509683520000,22.163383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509683580000,20.56528) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509683640000,25.306267) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509683700000,23.241108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509683760000,21.780603) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509683820000,21.732874) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509683880000,25.117329) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509683940000,23.858315) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509684000000,22.397808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509684060000,20.799707) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509684120000,24.73455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509684180000,22.11919) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509684240000,20.658686) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509684300000,24.45593) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509684360000,22.995426) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509684420000,21.73641) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509684480000,25.120865) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509684540000,25.073135) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509684600000,23.61263) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509684660000,25.345922) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509684720000,20.288458) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509684780000,24.690357) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509684840000,25.87326) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509684900000,20.614307) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509684960000,25.355291) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509685020000,20.950985) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509685080000,25.490482) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509685140000,25.681139) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509685200000,22.421877) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509685260000,22.374147) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509685320000,23.115194) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509685380000,24.848486) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509685440000,22.837593) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509685500000,23.642532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509685560000,25.375824) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509685620000,23.915318) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509685680000,22.454815) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509685740000,20.453548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509685800000,24.442656) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509685860000,22.982151) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509685920000,20.916994) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509685980000,20.869265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509686040000,25.610249) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509686100000,22.994705) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509686160000,21.534199) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509686220000,25.936098) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509686280000,23.871124) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509686340000,21.805967) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509686400000,25.795074) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509686460000,24.196974) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509686520000,22.333305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509686580000,20.8728) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509686640000,20.96267) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509686700000,22.558363) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509686760000,22.749022) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509686820000,21.490005) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509686880000,23.223297) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509686940000,23.826748) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509687000000,22.366241) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509687060000,23.750635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509687120000,24.491682) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509687180000,22.89358) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509687240000,24.626871) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509687300000,24.173813) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509687360000,25.914845) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509687420000,21.510538) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509687480000,20.050034) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509687540000,20.79108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509687600000,22.72586) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509687660000,21.12776) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509687720000,21.318417) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509687780000,23.051708) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509687840000,21.792694) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509687900000,20.194592) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509687960000,24.129435) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509688020000,22.118542) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509688080000,22.20841) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509688140000,20.207144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509688200000,24.74664) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509688260000,23.286135) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509688320000,20.67059) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509688380000,24.468021) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509688440000,23.007515) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509688500000,21.54701) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509688560000,25.481853) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509688620000,24.085241) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509688680000,22.074348) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509688740000,20.009192) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509688800000,20.099058) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509688860000,24.500957) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509688920000,20.435738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509688980000,20.626396) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509689040000,25.165892) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509689100000,20.761587) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509689160000,21.704123) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509689220000,20.243618) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509689280000,21.426521) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509689340000,22.02997) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509689400000,21.576912) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509689460000,23.310204) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509689520000,23.40007) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509689580000,24.003521) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509689640000,25.186424) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509689700000,23.927408) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509689760000,24.668455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509689820000,20.264149) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509689880000,24.803644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509689940000,25.195793) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509690000000,20.929085) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509690060000,25.330982) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509690120000,23.870478) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509690180000,22.00681) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509690240000,21.54629) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509690300000,25.948189) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509690360000,23.88303) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509690420000,22.422525) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509690480000,20.357553) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509690540000,24.75945) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509690600000,22.143906) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509690660000,20.683401) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509690720000,25.424385) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509690780000,23.221632) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509690840000,21.761127) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509690900000,21.300606) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509690960000,25.23545) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509691020000,23.838837) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509691080000,22.378332) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509691140000,24.111624) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509691200000,24.302282) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509691260000,22.90567) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509691320000,24.638962) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509691380000,25.380009) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509691440000,23.919502) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509691500000,20.522644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509691560000,20.713303) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509691620000,20.80317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509691680000,22.53646) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509691740000,20.93836) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509691800000,21.880896) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509691860000,23.063799) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509691920000,21.603294) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509691980000,22.206743) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509692040000,24.141525) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509692100000,22.681019) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509692160000,22.871677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509692220000,24.467373) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509692280000,23.208357) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509692340000,23.298225) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509692400000,21.233068) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509692460000,25.634966) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509692520000,23.624073) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509692580000,20.954449) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509692640000,25.493944) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509692700000,23.895842) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509692760000,22.435337) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509692820000,20.021282) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509692880000,24.560776) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509692940000,22.962675) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509693000000,20.897518) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509693060000,20.987385) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509693120000,25.177982) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509693180000,22.975227) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509693240000,21.514723) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509693300000,20.054218) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509693360000,21.988998) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509693420000,22.592447) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509693480000,20.581556) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509693540000,22.314848) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509693600000,24.06334) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509693660000,22.465237) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509693720000,24.19853) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509693780000,25.93956) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509693840000,24.479055) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509693900000,20.27624) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509693960000,24.815735) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509694020000,25.556782) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509694080000,20.739685) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509694140000,25.343073) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509694200000,20.084118) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509694260000,21.81741) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509694320000,20.356905) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509694380000,24.960293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509694440000,22.344748) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509694500000,22.434616) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509694560000,20.974112) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509694620000,24.771357) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509694680000,22.706385) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509694740000,20.695492) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509694800000,24.630335) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509694860000,23.032232) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509694920000,21.773216) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509694980000,20.312712) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509695040000,23.697166) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509695100000,22.099066) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509695160000,22.188932) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509695220000,20.325264) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509695280000,24.86476) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509695340000,23.266659) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509695400000,20.651114) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509695460000,25.392097) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509695520000,23.931593) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509695580000,25.527288) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509695640000,20.268333) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509695700000,25.264887) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509695760000,20.998178) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509695820000,21.601627) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509695880000,21.691496) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509695940000,23.424788) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509696000000,23.816935) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509696060000,22.218834) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509696120000,23.952126) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509696180000,22.491621) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509696240000,23.434156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509696300000,25.02985) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509696360000,23.018959) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509696420000,23.760004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509696480000,25.694786) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509696540000,24.096684) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509696600000,24.18655) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509696660000,21.571007) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509696720000,20.1105) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509696780000,23.907932) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509696840000,21.842775) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509696900000,20.38227) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509696960000,24.371378) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509697020000,22.370111) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509697080000,20.909607) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509697140000,25.449102) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509697200000,23.988598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509697260000,21.987333) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509697320000,21.526814) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509697380000,20.066309) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509697440000,24.00115) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509697500000,22.40305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509697560000,21.144033) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509697620000,24.528488) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509697680000,23.067984) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509697740000,21.469881) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509697800000,23.315311) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509697860000,24.056358) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509697920000,22.045465) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509697980000,23.641161) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509698040000,25.932579) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509698100000,24.673563) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509698160000,20.406855) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509698220000,24.808754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509698280000,24.999413) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509698340000,20.934193) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509698400000,25.473688) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509698460000,20.077137) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509698520000,21.810429) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509698580000,20.001026) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509698640000,20.742071) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509698700000,22.337767) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509698760000,22.427633) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509698820000,20.967129) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509698880000,23.747116) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509698940000,22.149015) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509699000000,20.68851) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509699060000,24.623352) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509699120000,23.364338) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509699180000,21.766235) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509699240000,25.15069) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509699300000,23.690186) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509699360000,22.43117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509699420000,22.38344) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509699480000,20.318283) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509699540000,24.307392) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509699600000,22.846886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509699660000,20.845621) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509699720000,25.385117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509699780000,23.924612) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509699840000,21.309067) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509699900000,20.71841) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509699960000,25.257906) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509700020000,20.991198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509700080000,21.732243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509700140000,21.684515) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509700200000,23.068907) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509700260000,23.809954) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509700320000,22.34945) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509700380000,23.945145) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509700440000,22.686129) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509700500000,22.876787) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509700560000,24.610079) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509700620000,23.011976) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509700680000,23.954512) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509700740000,25.687803) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509700800000,23.67691) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509700860000,25.830732) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509700920000,21.564024) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509700980000,25.499052) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509701040000,24.038548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509701100000,21.835793) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509701160000,25.824902) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509701220000,24.565886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509701280000,22.500729) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509701340000,20.902626) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509701400000,25.442122) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509701460000,23.028065) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509701520000,21.56756) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509701580000,21.51983) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509701640000,20.059326) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509701700000,23.99417) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509701760000,22.184765) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509701820000,20.586664) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509701880000,24.521507) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509701940000,23.061003) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509702000000,22.607943) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509702060000,24.203638) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509702120000,24.394297) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509702180000,22.933792) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509702240000,24.868572) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509702300000,21.022394) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509702360000,25.56189) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509702420000,20.744793) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509702480000,21.48584) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509702540000,20.089226) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509702600000,21.82252) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509702660000,20.362015) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509702720000,20.552673) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509702780000,22.349855) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509702840000,20.88935) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509702900000,21.630398) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509702960000,23.36369) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509703020000,23.31596) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509703080000,22.902151) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509703140000,24.635443) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509703200000,23.174938) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509703260000,21.576836) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509703320000,25.71317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509703380000,23.702276) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509703440000,22.241772) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509703500000,20.039017) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509703560000,24.78) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509703620000,23.319496) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509703680000,20.70395) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509703740000,20.656221) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509703800000,25.195717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509703860000,23.9367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509703920000,21.871544) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509703980000,20.273441) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509704040000,24.26255) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509704100000,23.204838) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509704160000,21.744333) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509704220000,20.146233) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509704280000,21.879524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509704340000,22.271671) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509704400000,22.361538) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509704460000,23.957233) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509704520000,24.69828) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509704580000,23.237774) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509704640000,24.622168) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509704700000,25.225616) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509704760000,23.765112) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509704820000,25.498405) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509704880000,24.239388) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509704940000,24.842838) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509705000000,20.025742) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509705060000,24.565237) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509705120000,20.856655) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509705180000,21.847883) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509705240000,20.387379) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509705300000,20.578037) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509705360000,22.311329) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509705420000,20.914717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509705480000,25.454212) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509705540000,23.389053) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509705600000,21.37816) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509705660000,25.981548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509705720000,23.916391) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509705780000,22.455887) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509705840000,22.545753) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509705900000,20.947653) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509705960000,24.533596) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509706020000,23.073092) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509706080000,21.612587) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509706140000,25.409832) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509706200000,24.956774) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509706260000,22.94588) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509706320000,20.880724) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509706380000,25.282623) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509706440000,24.023607) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509706500000,25.756899) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509706560000,21.497929) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509706620000,25.899828) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509706680000,21.63312) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509706740000,22.575655) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509706800000,21.11515) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509706860000,22.710846) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509706920000,22.901503) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509706980000,21.642487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509707040000,23.375778) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509707100000,21.777678) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509707160000,22.518724) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509707220000,23.09716) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509707280000,23.187027) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509707340000,23.790478) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509707400000,25.52377) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509707460000,24.063263) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509707520000,24.455412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509707580000,20.051105) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509707640000,24.590603) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509707700000,23.130096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509707760000,21.26643) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509707820000,25.668327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509707880000,23.657434) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509707940000,21.592278) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509708000000,21.682144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509708060000,20.285532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509708120000,24.825027) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509708180000,22.209482) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509708240000,20.748978) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509708300000,20.158321) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509708360000,24.093164) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509708420000,22.63266) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509708480000,20.621767) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509708540000,24.620502) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509708600000,23.159998) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509708660000,23.249865) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509708720000,24.983156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509708780000,25.586605) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509708840000,23.777203) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509708900000,25.510494) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509708960000,20.251541) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509709020000,24.653439) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509709080000,20.58822) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509709140000,20.778877) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509709200000,25.318375) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509709260000,20.914068) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509709320000,24.849096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509709380000,21.140514) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509709440000,22.323418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509709500000,20.725317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509709560000,21.466362) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509709620000,23.401144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509709680000,21.94064) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509709740000,20.342537) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509709800000,23.726992) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509709860000,22.467976) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509709920000,21.007473) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509709980000,24.804718) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509710040000,23.344213) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509710100000,22.883694) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509710160000,21.020025) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509710220000,25.421923) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509710280000,23.961418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509710340000,22.500914) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509710400000,20.892815) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509710460000,25.294712) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509710520000,23.834208) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509710580000,21.76905) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509710640000,20.510035) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509710700000,24.911934) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509710760000,22.296389) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509710820000,22.386255) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509710880000,20.92575) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509710940000,22.722935) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509711000000,23.463982) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509711060000,21.453089) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509711120000,23.18638) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509711180000,23.991318) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509711240000,22.530813) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509711300000,24.264105) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509711360000,24.454763) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509711420000,22.252195) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509711480000,23.985487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509711540000,24.075354) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509711600000,24.8164) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509711660000,20.412094) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509711720000,24.602692) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509711780000,25.343739) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509711840000,21.07703) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509711900000,25.478928) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509711960000,24.219913) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509712020000,21.604366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509712080000,20.143862) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509712140000,24.545761) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509712200000,22.682093) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509712260000,22.77196) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509712320000,20.761068) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509712380000,24.558313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509712440000,23.097809) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509712500000,22.644749) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509712560000,21.184244) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509712620000,24.981491) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509712680000,22.970598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509712740000,21.711582) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509712800000,25.646425) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509712860000,24.048325) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509712920000,24.138191) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509712980000,21.522646) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509713040000,20.26363) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509713100000,24.66553) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509713160000,20.39882) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509713220000,21.139866) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509713280000,25.330463) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509713340000,20.926159) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509713400000,21.667204) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509713460000,20.2067) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509713520000,21.335524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509713580000,25.737423) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509713640000,21.478453) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509713700000,23.211744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509713760000,21.75124) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509713820000,22.55618) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509713880000,24.28947) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509713940000,22.278578) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509714000000,23.019623) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509714060000,24.816807) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509714120000,23.356302) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509714180000,21.895798) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509714240000,25.280254) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509714300000,23.88364) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509714360000,23.973509) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509714420000,21.90835) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509714480000,20.447845) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509714540000,24.849745) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509714600000,24.136953) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509714660000,22.676449) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509714720000,21.215942) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509714780000,25.617842) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509714840000,23.754173) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509714900000,21.74328) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509714960000,20.282776) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509715020000,24.08002) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509715080000,24.16989) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509715140000,22.910873) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509715200000,20.295328) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509715260000,24.697227) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509715320000,23.236723) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509715380000,25.171503) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509715440000,25.91255) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509715500000,24.314447) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509715560000,25.497353) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509715620000,25.63393) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509715680000,24.173426) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509715740000,25.76912) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509715800000,25.858988) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509715860000,20.049646) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509715920000,21.984426) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509715980000,20.386326) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509716040000,21.127373) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509716100000,22.860664) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509716160000,21.05126) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509716220000,21.654709) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509716280000,23.388) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509716340000,21.927496) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509716400000,20.66848) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509716460000,24.465727) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509716520000,24.005207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509716580000,22.5447) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509716640000,20.479544) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509716700000,25.88889) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509716760000,24.428383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509716820000,21.81284) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509716880000,20.352333) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509716940000,24.95572) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509717000000,23.495216) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509717060000,21.43006) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509717120000,25.419167) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509717180000,25.371437) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509717240000,23.507769) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509717300000,22.047264) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509717360000,20.58676) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509717420000,22.182455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509717480000,22.574602) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509717540000,21.114098) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509717600000,22.84739) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509717660000,23.450838) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509717720000,21.385866) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509717780000,22.56877) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509717840000,23.309816) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509717900000,23.262087) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509717960000,24.995378) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509718020000,23.736362) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509718080000,23.927021) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509718140000,25.522717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509718200000,24.06221) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509718260000,25.004745) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509718320000,20.738039) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509718380000,25.139936) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509718440000,25.330595) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509718500000,21.265377) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509718560000,25.80487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509718620000,25.757141) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509718680000,23.691984) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509718740000,21.681091) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509718800000,21.228033) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509718860000,25.02528) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509718920000,23.564774) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509718980000,22.104269) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509719040000,25.690214) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509719100000,24.092112) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509719160000,22.631607) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509719220000,21.171103) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509719280000,25.307434) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509719340000,25.259705) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509719400000,23.248812) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509719460000,21.183655) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509719520000,25.72315) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509719580000,24.326538) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509719640000,20.05983) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509719700000,20.250488) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509719760000,24.789984) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509719820000,25.78121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509719880000,20.522257) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509719940000,25.061752) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509720000000,20.244656) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509720060000,22.398478) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509720120000,21.139462) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509720180000,22.872753) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509720240000,21.412249) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509720300000,22.015697) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509720360000,23.400091) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509720420000,21.939587) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509720480000,22.680634) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509720540000,24.276327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509720600000,23.017311) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509720660000,23.20797) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509720720000,24.941261) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509720780000,24.893532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509720840000,23.433027) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509720900000,22.375317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509720960000,20.364424) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509721020000,24.766323) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509721080000,22.701164) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509721140000,21.44215) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509721200000,25.981644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509721260000,24.383543) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509721320000,21.767998) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509721380000,20.508982) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509721440000,20.59885) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509721500000,24.396095) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509721560000,22.93559) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509721620000,20.924698) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509721680000,25.061031) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509721740000,23.462929) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509721800000,22.002424) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509721860000,23.735716) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509721920000,23.321907) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509721980000,21.723804) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509722040000,23.457096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509722100000,24.198143) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509722160000,24.28801) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509722220000,20.085194) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509722280000,20.275852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509722340000,24.815348) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509722400000,20.54864) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509722460000,25.152027) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509722520000,25.893074) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509722580000,21.075977) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509722640000,25.61547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509722700000,20.42041) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509722760000,22.153702) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509722820000,20.693197) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509722880000,22.434229) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509722940000,24.029922) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509723000000,23.576864) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509723060000,22.11636) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509723120000,20.051203) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509723180000,24.4531) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509723240000,22.643698) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509723300000,20.57854) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509723360000,25.118034) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509723420000,23.519934) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509723480000,22.260918) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509723540000,25.645372) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509723600000,25.73524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509723660000,24.137138) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509723720000,22.071981) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509723780000,20.812965) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509723840000,24.802074) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509723900000,22.59932) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509723960000,21.138815) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509724020000,25.073841) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509724080000,20.807133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509724140000,21.410583) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509724200000,25.39969) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509724260000,21.33447) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509724320000,23.625889) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509724380000,22.027788) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509724440000,23.76108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509724500000,23.951738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509724560000,22.692722) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509724620000,24.288418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509724680000,22.827913) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509724740000,23.568958) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509724800000,24.953352) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509724860000,23.355251) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509724920000,24.096296) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509724980000,25.829588) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509725040000,25.919456) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509725100000,25.3288) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509725160000,22.713255) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509725220000,21.25275) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509725280000,25.792246) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509725340000,23.790981) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509725400000,22.330475) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509725460000,20.319584) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509725520000,24.254425) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509725580000,22.857813) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509725640000,21.397308) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509725700000,21.487175) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509725760000,24.871632) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509725820000,23.27353) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509725880000,22.014513) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509725940000,25.949356) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509726000000,24.488852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509726060000,22.890749) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509726120000,25.670738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509726180000,24.210232) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509726240000,22.749727) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509726300000,24.345423) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509726360000,25.287958) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509726420000,24.827438) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509726480000,20.56073) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509726540000,21.164179) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509726600000,25.703674) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509726660000,21.638454) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509726720000,21.829113) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509726780000,20.231012) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509726840000,21.964304) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509726900000,20.705288) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509726960000,21.446333) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509727020000,23.042028) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509727080000,21.031136) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509727140000,23.322556) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509727200000,20.063292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509727260000,24.46519) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509727320000,23.004686) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509727380000,20.389141) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509727440000,25.130125) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509727500000,23.532024) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509727560000,21.466866) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509727620000,20.006361) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509727680000,24.196959) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509727740000,21.994204) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509727800000,20.533699) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509727860000,20.623566) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509727920000,25.163061) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509727980000,23.161797) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509728040000,21.150904) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509728100000,25.6904) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509728160000,23.625242) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509728220000,21.422672) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509728280000,25.962168) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509728340000,23.346622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509728400000,21.886118) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509728460000,20.489506) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509728520000,22.222797) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509728580000,24.514215) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509728640000,22.503323) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509728700000,24.099018) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509728760000,25.041553) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509728820000,23.581049) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509728880000,25.31434) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509728940000,23.71624) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509729000000,24.108387) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509729060000,25.841679) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509729120000,24.381174) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509729180000,24.984623) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509729240000,21.72536) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509729300000,21.26484) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509729360000,22.005886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509729420000,23.601582) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509729480000,22.141075) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509729540000,20.882061) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509729600000,24.266516) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509729660000,22.668413) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509729720000,21.207909) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509729780000,25.344242) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509729840000,23.883736) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509729900000,22.285635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509729960000,25.67009) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509730020000,25.759956) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509730080000,24.500942) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509730140000,22.90284) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509730200000,20.837683) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509730260000,24.82679) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509730320000,22.761818) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509730380000,20.559063) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509730440000,25.098558) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509730500000,23.638054) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509730560000,21.223997) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509730620000,25.625896) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509730680000,25.715763) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509730740000,21.449055) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509730800000,22.190102) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509730860000,20.79349) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509730920000,21.976393) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509730980000,22.71744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509731040000,21.256935) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509731100000,23.05412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509731160000,21.593615) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509731220000,21.784271) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509731280000,23.517565) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509731340000,22.0316) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509731400000,24.323019) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509731460000,20.05631) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509731520000,24.045418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509731580000,24.648867) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509731640000,20.583649) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509731700000,25.123142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509731760000,23.66264) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509731820000,21.459885) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509731880000,25.650482) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509731940000,24.189976) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509732000000,22.124819) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509732060000,20.526718) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509732120000,20.616585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509732180000,24.20253) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509732240000,22.742023) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509732300000,21.143923) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509732360000,25.683418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509732420000,23.013792) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509732480000,21.002901) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509732540000,25.404799) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509732600000,23.339642) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509732660000,22.080626) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509732720000,20.620121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509732780000,22.215816) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509732840000,23.956846) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509732900000,22.496342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509732960000,24.431122) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509733020000,25.034573) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509733080000,23.574066) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509733140000,24.756971) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509733200000,25.699507) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509733260000,24.101404) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509733320000,25.834698) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509733380000,24.374191) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509733440000,25.572296) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509733500000,21.167992) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509733560000,21.257858) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509733620000,21.998905) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509733680000,23.732197) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509733740000,22.335585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509733800000,22.526241) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509733860000,24.259533) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509733920000,22.79903) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509733980000,21.402416) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509734040000,25.33726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509734100000,23.326366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509734160000,21.865862) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509734220000,25.864597) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509734280000,25.954464) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509734340000,24.49396) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509734400000,21.878414) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509734460000,20.280313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509734520000,24.21534) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509734580000,22.754837) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509734640000,20.689678) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509734700000,25.091578) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509734760000,23.282173) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509734820000,21.217016) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509734880000,25.756512) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509734940000,25.708782) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509735000000,21.442074) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509735060000,21.83422) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509735120000,20.373716) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509735180000,21.969412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509735240000,22.710457) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509735300000,21.451443) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509735360000,22.634346) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509735420000,23.237795) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509735480000,21.77729) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509735540000,24.518028) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509735600000,23.057524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509735660000,25.211346) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509735720000,20.394249) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509735780000,24.933744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509735840000,25.87628) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509735900000,21.471975) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509735960000,20.011469) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509736020000,20.202127) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509736080000,22.13691) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509736140000,20.538807) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509736200000,25.078302) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509736260000,23.013145) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509736320000,21.203741) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509736380000,21.156012) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509736440000,25.090855) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509736500000,23.63035) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509736560000,22.169846) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509736620000,25.967278) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509736680000,23.35173) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509736740000,21.891226) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509736800000,20.430721) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509736860000,24.429457) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509736920000,22.968952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509736980000,20.95806) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509737040000,24.892902) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509737100000,24.845173) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509737160000,23.586157) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509737220000,25.319448) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509737280000,25.510107) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509737340000,23.912006) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509737400000,25.846786) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509737460000,20.587833) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509737520000,25.127327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509737580000,20.723022) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509737640000,21.921127) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509737700000,20.460623) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509737760000,22.193914) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509737820000,22.146185) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509737880000,22.88723) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509737940000,24.271624) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509738000000,22.81112) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509738060000,23.414568) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509738120000,25.14786) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509738180000,23.888845) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509738240000,24.079502) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509738300000,25.675198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509738360000,24.214693) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509738420000,22.955677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509738480000,20.89052) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509738540000,20.84279) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509738600000,24.831898) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509738660000,22.76674) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509738720000,20.701769) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509738780000,25.103666) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509738840000,23.643162) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509738900000,21.027617) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509738960000,25.7686) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509739020000,24.1705) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509739080000,22.105343) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509739140000,20.644838) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509739200000,20.184317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509739260000,24.183052) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509739320000,22.722548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509739380000,21.262043) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509739440000,22.995335) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509739500000,23.800274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509739560000,21.789381) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509739620000,23.522673) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509739680000,24.263718) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509739740000,23.673061) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509739800000,25.406355) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509739860000,25.597012) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509739920000,25.68688) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509739980000,21.282576) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509740040000,20.02356) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509740100000,20.764606) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509740160000,21.94751) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509740220000,20.349407) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509740280000,21.291943) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509740340000,23.025234) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509740400000,21.56473) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509740460000,25.966629) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509740520000,23.552572) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509740580000,22.092068) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509740640000,22.181936) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509740700000,25.979181) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509740760000,24.518677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509740820000,21.903316) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509740880000,25.83816) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509740940000,24.240057) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509741000000,22.779552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509741060000,21.520536) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509741120000,24.904991) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509741180000,23.30689) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509741240000,21.846386) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509741300000,25.982718) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509741360000,20.072584) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509741420000,24.474483) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509741480000,21.858938) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509741540000,20.398434) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509741600000,25.139418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509741660000,20.735113) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509741720000,21.476158) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509741780000,25.465267) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509741840000,22.206003) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509741900000,22.809452) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509741960000,21.348948) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509742020000,23.082241) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509742080000,24.82327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509742140000,23.426659) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509742200000,25.15995) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509742260000,23.699446) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509742320000,24.44049) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509742380000,20.237675) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509742440000,24.226784) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509742500000,24.967829) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509742560000,20.70112) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509742620000,25.304508) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509742680000,23.844004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509742740000,21.228458) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509742800000,21.318327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509742860000,25.720224) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509742920000,23.0506) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509742980000,21.590096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509743040000,25.579203) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509743100000,23.376448) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509743160000,22.117432) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509743220000,20.656927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509743280000,25.196423) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509743340000,22.993668) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509743400000,21.184265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509743460000,21.274134) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509743520000,25.208975) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509743580000,23.610874) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509743640000,22.15037) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509743700000,25.736313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509743760000,24.275808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509743820000,22.677708) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509743880000,24.411) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509743940000,20.15949) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509744000000,24.148598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509744060000,25.744293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509744120000,20.485338) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509744180000,20.575207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509744240000,22.509987) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509744300000,20.911886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509744360000,21.102545) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509744420000,22.835836) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509744480000,21.57682) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509744540000,22.18027) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509744600000,23.91356) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509744660000,21.902668) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509744720000,22.845203) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509744780000,24.440899) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509744840000,22.980394) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509744900000,23.070261) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509744960000,20.454716) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509745020000,24.252148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509745080000,22.791643) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509745140000,20.726486) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509745200000,25.26598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509745260000,23.869368) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509745320000,21.253822) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509745380000,25.793318) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509745440000,24.332813) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509745500000,22.936201) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509745560000,20.871044) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509745620000,20.410524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509745680000,24.950018) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509745740000,22.747265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509745800000,21.488249) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509745860000,20.027744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509745920000,23.412199) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509745980000,21.814096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509746040000,21.361038) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509746100000,23.09433) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509746160000,23.835377) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509746220000,22.237274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509746280000,23.621668) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509746340000,25.913086) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509746400000,24.452581) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509746460000,20.048277) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509746520000,24.587772) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509746580000,24.97992) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509746640000,20.713211) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509746700000,25.115108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509746760000,25.856155) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509746820000,21.790936) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509746880000,25.780045) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509746940000,20.383493) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509747000000,22.116785) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509747060000,22.206652) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509747120000,20.14168) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509747180000,23.938925) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509747240000,21.928034) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509747300000,20.46753) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509747360000,24.603859) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509747420000,23.005758) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509747480000,21.545254) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509747540000,24.929708) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509747600000,23.670692) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509747660000,22.072592) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509747720000,22.162458) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509747780000,20.097301) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509747840000,24.086409) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509747900000,22.689796) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509747960000,20.62464) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509748020000,25.164135) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509748080000,23.703629) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509748140000,21.202078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509748200000,21.392736) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509748260000,25.932232) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509748320000,21.665524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509748380000,22.470463) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509748440000,22.56033) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509748500000,23.743233) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509748560000,24.48428) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509748620000,22.886177) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509748680000,24.82096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509748740000,23.360455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509748800000,23.551113) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509748860000,25.146809) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509748920000,23.887793) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509748980000,24.628838) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509749040000,20.36213) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509749100000,24.764029) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509749160000,20.505058) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509749220000,21.633883) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509749280000,20.173378) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509749340000,24.575277) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509749400000,22.510118) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509749460000,20.700716) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509749520000,25.240211) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509749580000,23.037457) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509749640000,21.576952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509749700000,20.317936) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509749760000,23.702393) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509749820000,22.10429) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509749880000,22.194157) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509749940000,20.733652) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509750000000,24.869984) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509750060000,23.271883) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509750120000,21.26099) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509750180000,25.195833) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509750240000,24.742775) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509750300000,23.144672) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509750360000,24.877964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509750420000,25.068623) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509750480000,23.809607) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509750540000,25.405302) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509750600000,21.69672) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509750660000,20.236216) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509750720000,21.419119) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509750780000,22.224058) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509750840000,20.763554) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509750900000,22.496845) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509750960000,21.03634) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509751020000,21.841278) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509751080000,23.024181) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509751140000,21.563679) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509751200000,22.304724) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509751260000,23.295952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509751320000,23.385818) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509751380000,23.576477) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509751440000,25.309769) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509751500000,23.711668) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509751560000,22.452652) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509751620000,20.387493) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509751680000,24.376602) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509751740000,22.7785) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509751800000,20.914831) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509751860000,25.454327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509751920000,23.993822) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509751980000,23.946093) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509752040000,21.330547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509752100000,20.071533) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509752160000,24.611027) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509752220000,22.408274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509752280000,20.94777) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509752340000,25.944323) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509752400000,23.879164) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509752460000,22.281063) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509752520000,20.820559) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509752580000,22.755339) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509752640000,22.945997) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509752700000,22.898268) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509752760000,24.63156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509752820000,25.372606) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509752880000,24.11359) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509752940000,25.709286) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509753000000,25.899944) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509753060000,24.439438) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509753120000,20.37422) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509753180000,24.77612) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509753240000,25.517164) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509753300000,20.700068) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509753360000,24.635096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509753420000,20.788918) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509753480000,22.52221) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509753540000,21.061705) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509753600000,21.252363) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509753660000,23.049547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509753720000,21.589043) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509753780000,20.128536) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509753840000,24.063381) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509753900000,22.666767) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509753960000,20.655874) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509754020000,24.590717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509754080000,23.130213) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509754140000,23.082483) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509754200000,21.823467) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509754260000,25.207924) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509754320000,23.747417) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509754380000,22.149317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509754440000,21.091604) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509754500000,25.6311) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509754560000,23.620207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509754620000,21.417454) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509754680000,20.158438) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509754740000,24.697933) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509754800000,20.431225) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509754860000,22.585047) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509754920000,20.574154) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509754980000,22.508934) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509755040000,23.24998) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509755100000,21.651878) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509755160000,23.38517) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509755220000,23.777319) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509755280000,22.316814) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509755340000,23.912508) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509755400000,22.452003) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509755460000,22.588583) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509755520000,23.771486) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509755580000,23.723757) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509755640000,24.464804) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509755700000,20.198095) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509755760000,24.93908) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509755820000,23.340977) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509755880000,20.725433) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509755940000,25.264927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509756000000,24.005913) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509756060000,21.803158) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509756120000,20.342653) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509756180000,24.33176) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509756240000,22.468092) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509756300000,22.420362) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509756360000,20.959858) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509756420000,25.499353) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509756480000,22.883808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509756540000,22.293152) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509756600000,20.832647) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509756660000,24.76749) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509756720000,23.306986) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509756780000,21.910374) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509756840000,25.294828) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509756900000,23.834324) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509756960000,23.92419) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509757020000,25.519886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509757080000,20.462421) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509757140000,24.451529) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509757200000,20.18482) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509757260000,20.788269) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509757320000,25.529255) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509757380000,21.262547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509757440000,21.453205) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509757500000,25.855103) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509757560000,20.983927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509757620000,25.523422) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509757680000,21.81484) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509757740000,23.410536) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509757800000,21.399643) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509757860000,22.342178) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509757920000,24.07547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509757980000,22.477367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509758040000,21.016863) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509758100000,24.602808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509758160000,23.142303) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509758220000,21.5442) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509758280000,25.479044) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509758340000,24.220028) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509758400000,23.759508) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509758460000,21.556753) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509758520000,20.096249) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509758580000,24.635744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509758640000,24.182686) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509758700000,21.97993) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509758760000,25.96904) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509758820000,24.508533) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509758880000,22.644867) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509758940000,21.046764) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509759000000,25.58626) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509759060000,22.970715) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509759120000,23.060581) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509759180000,21.663969) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509759240000,23.39726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509759300000,24.138308) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509759360000,22.127415) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509759420000,23.924599) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509759480000,24.665646) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509759540000,23.20514) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509759600000,24.93843) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509759660000,22.735863) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509759720000,22.926521) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509759780000,24.659813) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509759840000,24.74968) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509759900000,25.35313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509759960000,21.28791) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509760020000,25.277018) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509760080000,20.018064) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509760140000,21.613758) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509760200000,20.354744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509760260000,24.894238) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509760320000,22.278694) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509760380000,20.680592) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509760440000,25.421577) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509760500000,23.356419) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509760560000,23.446285) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509760620000,21.848185) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509760680000,25.23264) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509760740000,24.779581) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509760800000,23.319077) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509760860000,21.720974) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509760920000,25.655817) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509760980000,23.846413) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509761040000,22.38591) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509761100000,20.183155) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509761160000,24.722649) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509761220000,24.812517) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509761280000,22.39846) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509761340000,20.80036) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509761400000,25.339855) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509761460000,21.073147) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509761520000,22.015682) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509761580000,20.41758) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509761640000,21.600485) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509761700000,22.34153) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509761760000,20.276558) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509761820000,21.872253) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509761880000,20.411749) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509761940000,22.152779) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509762000000,23.88607) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509762060000,22.489458) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509762120000,23.230505) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509762180000,24.963797) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509762240000,22.952904) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509762300000,23.757843) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509762360000,25.491135) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509762420000,24.030628) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509762480000,22.570124) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509762540000,20.56886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509762600000,24.557966) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509762660000,24.647835) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509762720000,22.582676) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509762780000,20.984575) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509762840000,20.531517) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509762900000,23.915972) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509762960000,22.455467) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509763020000,20.857365) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509763080000,25.598349) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509763140000,23.533192) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509763200000,21.522299) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509763260000,25.924198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509763320000,24.06053) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509763380000,24.150396) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509763440000,22.689892) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509763500000,24.285587) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509763560000,24.476246) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509763620000,23.21723) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509763680000,24.950521) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509763740000,25.55397) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509763800000,24.093466) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509763860000,24.671902) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509763920000,25.412949) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509763980000,23.814848) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509764040000,25.54814) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509764100000,25.638006) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509764160000,20.030153) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509764220000,21.625849) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509764280000,20.165344) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509764340000,20.906391) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509764400000,22.841171) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509764460000,21.243069) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509764520000,21.433727) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509764580000,23.167019) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509764640000,21.908005) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509764700000,20.309902) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509764760000,24.244745) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509764820000,23.784225) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509764880000,22.323719) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509764940000,20.233105) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509765000000,24.772598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509765060000,23.312094) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509765120000,20.696548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509765180000,25.299936) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509765240000,23.839432) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509765300000,22.378927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509765360000,20.31377) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509765420000,24.917158) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509765480000,24.456638) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509765540000,22.39148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509765600000,20.930975) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509765660000,25.332874) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509765720000,21.267654) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509765780000,21.458313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509765840000,25.997808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509765900000,21.593502) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509765960000,21.730082) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509766020000,20.269577) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509766080000,21.45248) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509766140000,22.055931) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509766200000,22.145798) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509766260000,24.080578) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509766320000,22.620073) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509766380000,23.223522) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509766440000,24.406425) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509766500000,23.147411) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509766560000,23.888458) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509766620000,25.484152) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509766680000,24.023647) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509766740000,24.415794) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509766800000,20.149086) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509766860000,24.550985) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509766920000,24.640852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509766980000,22.575695) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509767040000,21.572248) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509767100000,25.974148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509767160000,23.908989) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509767220000,22.448484) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509767280000,21.189468) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509767340000,25.591368) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509767400000,22.975822) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509767460000,21.515318) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509767520000,20.256302) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509767580000,24.053547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509767640000,24.143415) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509767700000,22.132523) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509767760000,20.067366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509767820000,24.670753) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509767880000,23.210249) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509767940000,24.94354) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509768000000,25.1342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509768060000,22.93163) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509768120000,24.66492) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509768180000,25.405968) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509768240000,23.945461) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509768300000,25.742645) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509768360000,21.483677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509768420000,20.023172) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509768480000,21.756464) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509768540000,20.158361) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509768600000,21.100897) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509768660000,22.283802) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509768720000,20.823298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509768780000,21.426746) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509768840000,23.361526) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509768900000,21.901022) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509768960000,22.09168) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509769020000,23.687376) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509769080000,23.777243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509769140000,23.324184) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509769200000,21.259027) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509769260000,25.660925) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509769320000,23.650032) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509769380000,21.786366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509769440000,20.32586) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509769500000,24.727758) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509769560000,23.267254) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509769620000,20.853197) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509769680000,25.392693) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509769740000,25.344963) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509769800000,23.279806) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509769860000,21.819302) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509769920000,20.009897) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509769980000,23.807144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509770040000,22.34664) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509770100000,20.886135) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509770160000,22.014957) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509770220000,22.618408) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509770280000,20.607515) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509770340000,22.340807) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509770400000,23.283342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509770460000,23.235613) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509770520000,24.968904) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509770580000,25.159563) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509770640000,23.699059) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509770700000,25.496243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509770760000,24.035738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509770820000,24.776783) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509770880000,25.959686) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509770940000,24.563076) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509771000000,25.304121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509771060000,21.037413) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509771120000,25.576908) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509771180000,25.529179) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509771240000,23.92108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509771300000,22.460575) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509771360000,21.00007) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509771420000,24.797316) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509771480000,23.5383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509771540000,21.527409) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509771600000,25.46225) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509771660000,23.86415) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509771720000,22.605133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509771780000,21.144629) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509771840000,24.529083) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509771900000,24.481354) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509771960000,23.02085) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509772020000,21.15718) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509772080000,25.696676) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509772140000,24.098576) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509772200000,21.48303) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509772260000,25.418056) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509772320000,23.957552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509772380000,25.553247) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509772440000,20.294292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509772500000,24.48489) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509772560000,20.218182) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509772620000,22.372004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509772680000,20.911499) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509772740000,22.64479) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509772800000,23.036938) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509772860000,21.438837) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509772920000,23.172129) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509772980000,21.711622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509773040000,22.65416) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509773100000,24.249853) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509773160000,22.23896) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509773220000,22.980007) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509773280000,25.720745) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509773340000,25.673016) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509773400000,24.212511) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509773460000,21.596966) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509773520000,20.136461) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509773580000,24.73985) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509773640000,22.67469) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509773700000,21.214186) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509773760000,25.203293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509773820000,23.202028) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509773880000,21.741524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509773940000,20.28102) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509774000000,20.370886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509774060000,24.168133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509774120000,22.358728) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509774180000,20.898224) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509774240000,24.833067) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509774300000,23.234964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509774360000,21.169992) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509774420000,24.554447) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509774480000,23.093943) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509774540000,21.495842) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509774600000,23.430622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509774660000,24.171669) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509774720000,23.711147) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509774780000,25.306843) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509774840000,20.04789) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509774900000,24.788874) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509774960000,20.522165) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509775020000,24.924065) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509775080000,25.114721) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509775140000,21.049503) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509775200000,25.588999) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509775260000,20.192448) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509775320000,21.92574) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509775380000,20.922293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509775440000,23.21371) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509775500000,24.809406) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509775560000,23.348902) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509775620000,21.888397) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509775680000,25.47434) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509775740000,23.87624) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509775800000,22.415733) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509775860000,20.350576) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509775920000,25.09156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509775980000,23.49346) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509776040000,20.877914) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509776100000,25.41741) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509776160000,25.507277) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509776220000,24.110664) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509776280000,22.045507) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509776340000,20.034615) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509776400000,24.57411) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509776460000,21.766888) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509776520000,20.306383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509776580000,24.845879) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509776640000,22.230333) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509776700000,20.833721) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509776760000,25.373217) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509776820000,21.106508) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509776880000,23.397926) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509776940000,21.799826) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509777000000,23.184217) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509777060000,23.925264) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509777120000,22.46476) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509777180000,24.060455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509777240000,22.80144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509777300000,22.992096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509777360000,24.72539) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509777420000,23.127287) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509777480000,24.875778) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509777540000,20.60907) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509777600000,20.14855) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509777660000,20.751999) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509777720000,22.48529) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509777780000,21.226276) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509777840000,25.765772) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509777900000,23.563017) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509777960000,21.552124) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509778020000,20.29311) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509778080000,24.227951) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509778140000,22.62985) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509778200000,21.169346) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509778260000,24.75529) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509778320000,24.845158) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509778380000,23.247055) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509778440000,21.78655) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509778500000,25.721394) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509778560000,23.106033) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509778620000,21.50793) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509778680000,25.442774) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509778740000,23.98227) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509778800000,22.723253) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509778860000,24.318949) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509778920000,24.509605) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509778980000,24.599474) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509779040000,20.332766) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509779100000,21.137705) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509779160000,25.6772) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509779220000,20.860104) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509779280000,21.60115) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509779340000,20.204536) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509779400000,21.93783) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509779460000,20.477325) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509779520000,20.667982) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509779580000,23.271124) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509779640000,21.81062) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509779700000,24.102037) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509779760000,25.83533) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509779820000,24.237228) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509779880000,24.629375) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509779940000,20.362667) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509780000000,24.90216) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509780060000,23.30406) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509780120000,21.440392) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509780180000,25.4295) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509780240000,23.968994) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509780300000,21.766241) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509780360000,20.507225) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509780420000,20.597092) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509780480000,23.981548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509780540000,22.383446) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509780600000,20.922941) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509780660000,24.85797) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509780720000,22.79281) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509780780000,21.19471) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509780840000,25.183817) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509780900000,23.320148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509780960000,21.859644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509781020000,20.261543) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509781080000,21.994835) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509781140000,23.735865) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509781200000,22.476849) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509781260000,24.072544) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509781320000,24.813591) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509781380000,23.353085) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509781440000,24.737478) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509781500000,25.340927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509781560000,23.880423) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509781620000,25.613716) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509781680000,20.055964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509781740000,20.659412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509781800000,21.842318) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509781860000,21.932184) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509781920000,22.673231) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509781980000,24.470415) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509782040000,23.00991) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509782100000,23.20057) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509782160000,24.93386) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509782220000,23.537247) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509782280000,22.076742) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509782340000,20.011585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509782400000,24.000694) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509782460000,22.60408) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509782520000,20.538923) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509782580000,20.62879) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509782640000,25.168285) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509782700000,23.570185) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509782760000,20.350172) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509782820000,24.889668) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509782880000,23.429161) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509782940000,21.226408) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509783000000,25.967392) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509783060000,23.9565) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509783120000,21.891342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509783180000,20.29324) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509783240000,20.383108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509783300000,22.31789) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509783360000,22.508547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509783420000,20.910446) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509783480000,22.643738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509783540000,23.586273) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509783600000,22.125769) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509783660000,23.721462) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509783720000,23.91212) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509783780000,23.459063) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509783840000,25.192354) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509783900000,23.594254) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509783960000,25.885672) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509784020000,21.068575) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509784080000,25.809559) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509784140000,20.41301) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509784200000,22.146301) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509784260000,20.685795) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509784320000,21.077944) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509784380000,22.673637) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509784440000,21.213133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509784500000,25.752628) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509784560000,23.88896) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509784620000,22.29086) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509784680000,21.83034) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509784740000,25.76518) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509784800000,24.304676) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509784860000,22.102108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509784920000,20.641603) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509784980000,24.026058) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509785040000,22.565552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509785100000,21.16894) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509785160000,25.103783) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509785220000,23.643278) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509785280000,21.632385) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509785340000,25.63112) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509785400000,25.72099) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509785460000,24.260483) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509785520000,25.993774) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509785580000,20.597225) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509785640000,24.78782) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509785700000,20.521112) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509785760000,21.26216) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509785820000,25.664057) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509785880000,22.404795) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509785940000,22.595453) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509786000000,21.134949) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509786060000,22.730644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509786120000,22.82051) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509786180000,23.763046) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509786240000,24.94595) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509786300000,23.347849) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509786360000,24.088894) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509786420000,20.023676) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509786480000,24.563171) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509786540000,22.965069) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509786600000,20.349524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509786660000,25.090508) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509786720000,23.630003) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509786780000,21.42725) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509786840000,21.517117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509786900000,25.506224) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509786960000,22.8366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509787020000,21.238499) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509787080000,25.777992) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509787140000,24.317488) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509787200000,21.903433) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509787260000,20.30533) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509787320000,24.844826) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509787380000,22.779669) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509787440000,21.520653) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509787500000,21.472923) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509787560000,24.857378) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509787620000,23.396873) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509787680000,21.936369) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509787740000,23.733553) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509787800000,24.474598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509787860000,22.463707) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509787920000,24.196999) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509787980000,25.807894) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509788040000,24.34739) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509788100000,20.08068) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509788160000,20.27134) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509788220000,20.22361) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509788280000,22.15839) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509788340000,20.697886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509788400000,21.438932) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509788460000,23.034626) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509788520000,21.225224) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509788580000,21.96627) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509788640000,23.699562) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509788700000,22.10146) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509788760000,20.842443) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509788820000,24.226898) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509788880000,22.766394) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509788940000,22.718664) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509789000000,20.653507) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509789060000,24.588535) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509789120000,22.577642) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509789180000,20.37489) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509789240000,24.914383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509789300000,23.655369) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509789360000,22.194862) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509789420000,25.99211) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509789480000,23.981216) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509789540000,22.7222) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509789600000,20.657043) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509789660000,20.609314) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509789720000,25.14881) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509789780000,22.533264) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509789840000,21.274248) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509789900000,25.676147) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509789960000,21.40944) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509790020000,22.150486) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509790080000,21.147038) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509790140000,22.742733) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509790200000,23.48378) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509790260000,22.023275) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509790320000,23.958055) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509790380000,23.910326) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509790440000,24.100985) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509790500000,25.834276) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509790560000,24.373772) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509790620000,25.17871) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509790680000,20.912003) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509790740000,24.90111) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509790800000,25.642155) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509790860000,21.439339) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509790920000,25.978834) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509790980000,24.51833) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509791040000,21.902784) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509791100000,21.855055) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509791160000,25.790083) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509791220000,23.724926) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509791280000,22.264421) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509791340000,20.666319) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509791400000,24.252262) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509791460000,22.79176) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509791520000,21.331253) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509791580000,25.733152) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509791640000,23.869484) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509791700000,21.858591) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509791760000,21.94846) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509791820000,25.745705) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509791880000,24.2852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509791940000,23.026184) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509792000000,20.410639) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509792060000,24.812538) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509792120000,23.352032) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509792180000,20.09277) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509792240000,20.833817) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509792300000,25.235714) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509792360000,20.41862) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509792420000,21.361155) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509792480000,21.451021) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509792540000,23.046717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509792600000,21.586212) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509792660000,21.77687) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509792720000,23.71165) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509792780000,22.11355) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509792840000,22.854595) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509792900000,24.587887) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509792960000,22.778484) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509793020000,23.381933) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509793080000,25.115225) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509793140000,23.65472) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509793200000,23.744587) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509793260000,20.937366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509793320000,24.926474) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509793380000,23.46597) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509793440000,21.400812) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509793500000,20.004198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509793560000,24.543694) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509793620000,21.92815) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509793680000,20.467644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509793740000,25.071032) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509793800000,23.610527) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509793860000,21.54537) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509793920000,21.08485) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509793980000,25.486748) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509794040000,23.62308) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509794100000,22.162575) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509794160000,20.70207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509794220000,22.297766) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509794280000,23.495869) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509794340000,22.035364) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509794400000,23.768656) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509794460000,24.372105) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509794520000,23.11309) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509794580000,24.295994) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509794640000,20.587412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509794700000,24.989311) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509794760000,20.722603) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509794820000,25.463587) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509794880000,25.654245) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509794940000,21.24994) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509795000000,25.789436) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509795060000,20.73197) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509795120000,22.465263) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509795180000,20.86716) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509795240000,21.05782) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509795300000,22.186644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509795360000,22.27651) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509795420000,20.67841) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509795480000,24.61325) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509795540000,22.60236) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509795600000,21.343344) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509795660000,25.14059) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509795720000,23.680084) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509795780000,22.21958) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509795840000,25.805523) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509795900000,24.207422) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509795960000,22.746918) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509796020000,22.836784) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509796080000,20.771627) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509796140000,25.375015) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509796200000,23.364122) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509796260000,21.298965) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509796320000,25.83846) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509796380000,25.247805) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509796440000,20.981096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509796500000,21.171755) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509796560000,25.71125) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509796620000,21.508434) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509796680000,22.249481) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509796740000,22.339348) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509796800000,23.522251) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509796860000,24.125702) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509796920000,22.866686) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509796980000,24.599977) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509797040000,23.139473) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509797100000,23.742922) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509797160000,25.127316) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509797220000,23.666811) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509797280000,24.407856) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509797340000,20.003551) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509797400000,23.93858) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509797460000,25.67961) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509797520000,21.4129) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509797580000,25.8148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509797640000,24.354294) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509797700000,22.490627) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509797760000,20.479734) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509797820000,24.881634) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509797880000,22.816475) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509797940000,21.557459) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509798000000,20.096954) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509798060000,24.498854) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509798120000,21.883308) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509798180000,21.973175) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509798240000,20.71416) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509798300000,24.511406) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509798360000,23.050901) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509798420000,21.040009) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509798480000,25.08699) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509798540000,23.488888) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509798600000,22.028383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509798660000,23.761675) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509798720000,24.153822) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509798780000,22.555721) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509798840000,24.289013) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509798900000,20.580431) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509798960000,25.119926) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509799020000,20.91711) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509799080000,21.107769) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509799140000,25.647263) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509799200000,21.380556) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509799260000,25.983944) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509799320000,20.724989) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509799380000,21.907894) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509799440000,20.447388) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509799500000,20.44637) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509799560000,22.17966) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509799620000,22.26953) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509799680000,22.460188) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509799740000,24.055882) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509799800000,22.796867) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509799860000,21.336363) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509799920000,25.271206) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509799980000,23.673103) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509800040000,21.863699) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509800100000,25.798542) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509800160000,24.338037) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509800220000,22.739937) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509800280000,22.829803) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509800340000,20.415749) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509800400000,24.955242) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509800460000,23.357141) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509800520000,21.291985) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509800580000,20.838924) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509800640000,24.828033) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509800700000,22.625278) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509800760000,21.164774) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509800820000,25.905758) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509800880000,21.63905) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509800940000,22.242498) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509801000000,21.781979) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509801060000,23.51527) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509801120000,24.457806) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509801180000,22.859703) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509801240000,24.592995) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509801300000,24.783653) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509801360000,23.52464) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509801420000,25.120335) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509801480000,23.659828) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509801540000,24.400875) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509801600000,24.979311) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509801660000,23.38121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509801720000,25.672628) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509801780000,21.40592) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509801840000,25.945415) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509801900000,24.548801) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509801960000,21.933258) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509802020000,20.472752) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509802080000,25.012249) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509802140000,23.010983) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509802200000,21.550478) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509802260000,25.539585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509802320000,23.474428) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509802380000,22.077816) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509802440000,22.167683) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509802500000,20.707178) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509802560000,24.091633) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509802620000,22.493532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509802680000,22.040474) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509802740000,25.975315) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509802800000,24.51481) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509802860000,22.91671) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509802920000,20.502653) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509802980000,25.042149) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509803040000,23.581644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509803100000,25.177338) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509803160000,21.468758) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509803220000,25.659353) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509803280000,21.392645) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509803340000,21.996094) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509803400000,20.53559) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509803460000,22.470371) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509803520000,22.66103) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509803580000,21.062927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509803640000,22.796219) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509803700000,20.731247) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509803760000,21.472294) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509803820000,23.067987) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509803880000,22.607468) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509803940000,23.348515) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509804000000,25.283295) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509804060000,23.685192) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509804120000,22.224688) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509804180000,25.609142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509804240000,24.350128) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509804300000,22.752026) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509804360000,20.686869) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509804420000,25.226364) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509804480000,23.41696) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509804540000,21.214207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509804600000,21.304073) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509804660000,25.843569) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509804720000,24.383064) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509804780000,23.187756) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509804840000,21.176863) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509804900000,25.716358) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509804960000,23.651201) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509805020000,22.25459) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509805080000,20.794085) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509805140000,24.17854) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509805200000,22.718035) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509805260000,22.670305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509805320000,24.605085) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509805380000,25.346132) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509805440000,23.33524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509805500000,24.930935) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509805560000,25.87347) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509805620000,24.412964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509805680000,20.146257) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509805740000,24.548155) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509805800000,24.134346) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509805860000,25.867638) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509805920000,24.407133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509805980000,20.560955) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509806040000,22.294247) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509806100000,20.484842) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509806160000,21.22589) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509806220000,22.821583) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509806280000,21.361078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509806340000,20.102064) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509806400000,23.486519) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509806460000,21.888416) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509806520000,20.427912) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509806580000,24.564243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509806640000,23.103739) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509806700000,23.05601) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509806760000,20.440464) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509806820000,24.97996) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509806880000,24.526901) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509806940000,22.928799) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509807000000,20.863642) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509807060000,24.852749) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509807120000,23.593735) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509807180000,21.39098) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509807240000,25.930475) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509807300000,24.46997) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509807360000,22.055914) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509807420000,22.008184) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509807480000,20.54768) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509807540000,22.280972) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509807600000,23.022018) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509807660000,21.625404) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509807720000,22.80831) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509807780000,23.549355) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509807840000,22.08885) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509807900000,23.080078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509807960000,21.619574) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509808020000,21.810232) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509808080000,23.543524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509808140000,23.495794) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509808200000,24.43833) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509808260000,20.171621) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509808320000,24.160728) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509808380000,24.764177) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509808440000,20.69896) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509808500000,25.238453) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509808560000,23.777948) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509808620000,21.575195) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509808680000,25.765793) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509808740000,24.305286) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509808800000,22.24013) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509808860000,22.1924) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509808920000,20.731895) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509808980000,25.123796) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509809040000,23.663292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509809100000,22.06519) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509809160000,20.604685) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509809220000,24.741016) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509809280000,22.730125) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509809340000,21.132023) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509809400000,25.066864) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509809460000,23.80785) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509809520000,23.897717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509809580000,25.493412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509809640000,25.68407) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509809700000,24.223566) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509809760000,20.158346) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509809820000,20.761795) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509809880000,25.30129) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509809940000,20.484196) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509810000000,20.620773) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509810060000,25.022673) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509810120000,20.755964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509810180000,25.29546) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509810240000,21.03649) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509810300000,22.833673) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509810360000,21.373169) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509810420000,22.114216) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509810480000,23.847507) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509810540000,22.450893) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509810600000,22.641552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509810660000,24.374844) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509810720000,22.91434) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509810780000,21.517727) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509810840000,25.45257) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509810900000,23.441677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509810960000,23.531544) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509811020000,21.32879) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509811080000,20.875732) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509811140000,25.415226) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509811200000,22.799683) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509811260000,21.20158) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509811320000,25.942564) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509811380000,24.48206) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509811440000,22.416903) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509811500000,20.8188) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509811560000,25.009398) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509811620000,22.94424) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509811680000,23.034107) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509811740000,21.436007) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509811800000,23.169298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509811860000,23.561445) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509811920000,22.10094) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509811980000,23.696636) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509812040000,24.437681) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509812100000,22.37271) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509812160000,23.555613) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509812220000,24.159061) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509812280000,22.698557) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509812340000,24.633339) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509812400000,24.723206) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509812460000,25.326656) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509812520000,20.50956) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509812580000,25.049055) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509812640000,25.99159) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509812700000,21.587284) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509812760000,20.12678) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509812820000,20.317438) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509812880000,22.25222) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509812940000,20.654118) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509813000000,25.193613) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509813060000,23.128456) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509813120000,22.667934) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509813180000,22.07728) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509813240000,20.012123) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509813300000,24.551617) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509813360000,23.091112) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509813420000,21.6945) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509813480000,25.078955) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509813540000,23.61845) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509813600000,22.157946) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509813660000,20.156681) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509813720000,24.696175) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509813780000,24.235655) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509813840000,22.170498) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509813900000,20.572397) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509813960000,25.313381) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509814020000,21.046673) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509814080000,21.237331) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509814140000,25.639229) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509814200000,20.768053) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509814260000,21.5091) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509814320000,20.048595) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509814380000,21.64429) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509814440000,22.036438) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509814500000,22.126305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509814560000,23.859596) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509814620000,22.261496) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509814680000,23.00254) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509814740000,24.386934) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509814800000,22.92643) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509814860000,23.529879) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509814920000,25.26317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509814980000,24.004154) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509815040000,24.194813) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509815100000,25.790508) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509815160000,24.330004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509815220000,24.41987) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509815280000,24.257467) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509815340000,22.659367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509815400000,20.648474) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509815460000,24.583317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509815520000,23.3243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509815580000,21.726198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509815640000,20.265694) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509815700000,23.650148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509815760000,22.391132) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509815820000,20.793032) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509815880000,24.727875) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509815940000,24.817741) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509816000000,22.806849) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509816060000,20.805584) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509816120000,25.34508) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509816180000,23.884575) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509816240000,25.617867) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509816300000,25.616848) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509816360000,23.605955) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509816420000,25.339247) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509816480000,20.080294) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509816540000,24.683681) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509816600000,20.416973) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509816660000,22.158003) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509816720000,20.697498) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509816780000,22.293194) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509816840000,21.034178) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509816900000,21.775225) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509816960000,22.958128) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509817020000,21.360025) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509817080000,22.302563) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509817140000,24.035854) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509817200000,22.575348) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509817260000,20.977247) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509817320000,25.369148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509817380000,25.459015) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509817440000,23.99851) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509817500000,21.795755) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509817560000,20.33525) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509817620000,24.525848) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509817680000,22.460691) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509817740000,20.862589) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509817800000,25.402084) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509817860000,24.143068) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509817920000,21.527523) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509817980000,25.929422) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509818040000,20.019289) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509818100000,23.954132) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509818160000,22.695116) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509818220000,21.097015) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509818280000,24.48147) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509818340000,23.020966) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509818400000,20.955994) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509818460000,22.551687) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509818520000,23.292734) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509818580000,21.281841) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509818640000,23.216621) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509818700000,23.820072) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509818760000,23.909939) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509818820000,25.64323) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509818880000,25.833889) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509818940000,24.437277) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509819000000,20.170568) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509819060000,24.710064) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509819120000,25.451109) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509819180000,21.248293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509819240000,25.2374) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509819300000,25.978447) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509819360000,21.711739) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509819420000,21.121082) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509819480000,21.21095) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509819540000,24.595406) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509819600000,23.134901) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509819660000,21.536798) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509819720000,25.673132) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509819780000,24.212627) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509819840000,22.201735) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509819900000,25.99898) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509819960000,24.739964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509820020000,23.279459) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509820080000,21.818954) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509820140000,25.6162) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509820200000,25.15568) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509820260000,23.896664) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509820320000,21.831507) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509820380000,20.233406) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509820440000,24.7729) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509820500000,21.552889) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509820560000,20.092384) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509820620000,24.494282) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509820680000,20.227573) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509820740000,21.170109) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509820800000,25.159216) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509820860000,20.754911) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509820920000,23.04633) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509820980000,21.585825) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509821040000,23.520605) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509821100000,21.922504) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509821160000,22.113163) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509821220000,23.846455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509821280000,22.587439) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509821340000,23.190887) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509821400000,24.92418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509821460000,22.913288) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509821520000,24.66178) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509821580000,20.257473) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509821640000,20.347342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509821700000,24.886837) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509821760000,22.271292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509821820000,20.87468) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509821880000,25.414175) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509821940000,23.349016) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509822000000,21.888512) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509822060000,20.4919) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509822120000,23.876354) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509822180000,22.41585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509822240000,20.955345) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509822300000,20.907616) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509822360000,25.043947) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509822420000,23.033054) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509822480000,21.57255) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509822540000,25.369797) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509822600000,23.304825) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509822660000,21.844318) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509822720000,25.228773) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509822780000,23.630672) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509822840000,22.371656) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509822900000,24.104948) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509822960000,24.845995) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509823020000,24.798265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509823080000,25.981169) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509823140000,20.923704) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509823200000,25.4632) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509823260000,21.058895) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509823320000,25.598389) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509823380000,25.990538) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509823440000,21.72383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509823500000,20.125727) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509823560000,20.866774) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509823620000,23.607512) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509823680000,21.596619) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509823740000,23.75044) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509823800000,25.483732) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509823860000,24.023228) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509823920000,22.764212) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509823980000,20.561457) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509824040000,24.550564) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509824100000,23.09006) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509824160000,21.22639) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509824220000,25.62829) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509824280000,24.167786) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509824340000,21.55224) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509824400000,20.293224) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509824460000,20.245495) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509824520000,24.78499) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509824580000,22.719833) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509824640000,20.70894) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509824700000,24.50637) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509824760000,22.441214) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509824820000,20.98071) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509824880000,25.520205) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509824940000,21.317389) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509825000000,21.508047) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509825060000,20.047543) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509825120000,21.780834) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509825180000,23.934656) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509825240000,22.67564) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509825300000,23.858543) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509825360000,24.59959) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509825420000,23.001488) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509825480000,24.93627) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509825540000,23.475765) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509825600000,23.666424) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509825660000,25.262117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509825720000,24.80906) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509825780000,25.550106) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509825840000,21.283398) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509825900000,21.235668) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509825960000,21.426327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509826020000,23.361107) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509826080000,21.900602) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509826140000,20.3025) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509826200000,24.237343) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509826260000,22.42794) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509826320000,20.967436) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509826380000,24.76468) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509826440000,23.304176) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509826500000,22.04516) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509826560000,25.429615) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509826620000,25.381886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509826680000,23.921381) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509826740000,22.460876) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509826800000,25.791252) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509826860000,24.19315) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509826920000,22.182257) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509826980000,20.1171) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509827040000,24.858086) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509827100000,23.259983) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509827160000,24.993275) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509827220000,25.183933) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509827280000,25.2738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509827340000,21.070984) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509827400000,21.81203) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509827460000,20.351526) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509827520000,21.53443) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509827580000,22.339369) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509827640000,20.878864) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509827700000,22.612156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509827760000,21.15165) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509827820000,22.762547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509827880000,23.94545) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509827940000,22.484945) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509828000000,24.776363) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509828060000,20.372059) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509828120000,25.113043) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509828180000,25.303701) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509828240000,21.036993) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509828300000,25.438892) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509828360000,24.179874) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509828420000,22.114717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509828480000,20.103827) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509828540000,24.505724) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509828600000,22.642056) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509828660000,21.181551) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509828720000,21.27142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509828780000,25.673317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509828840000,23.057772) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509828900000,20.9928) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509828960000,25.532295) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509829020000,23.32954) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509829080000,21.869036) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509829140000,20.059631) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509829200000,23.994474) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509829260000,22.396374) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509829320000,20.93587) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509829380000,22.87065) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509829440000,24.611681) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509829500000,23.013578) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509829560000,24.74687) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509829620000,25.487915) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509829680000,24.2289) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509829740000,25.824596) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509829800000,20.015253) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509829860000,24.554749) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509829920000,21.295486) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509829980000,25.697386) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509830040000,20.43843) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509830100000,21.621336) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509830160000,21.711203) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509830220000,22.516142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509830280000,24.249434) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509830340000,22.788929) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509830400000,22.979588) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509830460000,24.776772) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509830520000,23.316265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509830580000,21.85576) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509830640000,25.790604) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509830700000,24.393991) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509830760000,22.383099) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509830820000,20.317942) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509830880000,20.407808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509830940000,24.809708) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509831000000,22.744736) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509831060000,20.12919) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509831120000,24.668686) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509831180000,23.070583) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509831240000,21.206915) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509831300000,25.74641) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509831360000,23.735518) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509831420000,21.532764) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509831480000,20.273748) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509831540000,20.363617) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509831600000,22.096909) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509831660000,22.700357) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509831720000,20.689465) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509831780000,22.624245) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509831840000,23.365292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509831900000,21.767189) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509831960000,23.50048) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509832020000,23.803278) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509832080000,22.342773) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509832140000,23.938469) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509832200000,22.477962) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509832260000,24.769382) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509832320000,20.153774) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509832380000,24.555674) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509832440000,25.296719) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509832500000,21.03001) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509832560000,25.770996) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509832620000,24.172894) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509832680000,21.557348) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509832740000,20.096844) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509832800000,24.83783) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509832860000,22.635075) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509832920000,21.17457) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509832980000,20.714048) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509833040000,24.648891) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509833100000,22.446323) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509833160000,20.985819) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509833220000,25.525312) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509833280000,22.909767) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509833340000,21.513155) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509833400000,20.05265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509833460000,23.987494) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509833520000,22.526989) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509833580000,21.130377) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509833640000,24.514832) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509833700000,24.604698) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509833760000,23.144194) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509833820000,24.73989) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509833880000,25.682425) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509833940000,23.671532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509834000000,25.404823) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509834060000,20.008272) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509834120000,25.555214) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509834180000,21.288506) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509834240000,21.479164) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509834300000,25.881062) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509834360000,21.815844) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509834420000,21.90571) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509834480000,22.646757) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509834540000,24.24245) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509834600000,22.23156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509834660000,23.174095) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509834720000,24.907387) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509834780000,23.309284) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509834840000,21.84878) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509834900000,25.434723) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509834960000,23.974218) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509835020000,22.376118) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509835080000,20.31096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509835140000,20.400827) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509835200000,23.785467) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509835260000,21.582714) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509835320000,20.122208) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509835380000,24.661703) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509835440000,23.402689) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509835500000,21.199934) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509835560000,25.189041) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509835620000,23.728537) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509835680000,21.864868) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509835740000,20.266768) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509835800000,20.356634) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509835860000,23.741089) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509835920000,22.280584) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509835980000,20.883972) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509836040000,22.617264) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509836100000,23.35831) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509836160000,21.347418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509836220000,23.950558) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509836280000,24.691605) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509836340000,23.2311) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509836400000,24.964392) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509836460000,23.56778) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509836520000,25.30881) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509836580000,21.0421) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509836640000,25.581596) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509836700000,20.185045) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509836760000,22.119827) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509836820000,20.108934) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509836880000,20.84998) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509836940000,22.445675) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509837000000,21.186659) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509837060000,25.726154) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509837120000,23.11061) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509837180000,21.512508) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509837240000,21.602375) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509837300000,24.93275) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509837360000,23.472246) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509837420000,21.874144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509837480000,25.258598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509837540000,23.999584) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509837600000,22.539078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509837660000,20.940977) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509837720000,24.87582) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509837780000,23.066416) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509837840000,21.605911) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509837900000,25.403156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509837960000,25.493025) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509838020000,24.03252) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509838080000,21.618464) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509838140000,20.020363) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509838200000,24.559856) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509838260000,20.29315) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509838320000,22.041641) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509838380000,20.44354) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509838440000,21.626444) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509838500000,22.36749) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509838560000,21.108475) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509838620000,22.70417) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509838680000,22.794037) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509838740000,22.984695) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509838800000,24.717987) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509838860000,23.321375) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509838920000,24.06242) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509838980000,25.795712) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509839040000,23.78482) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509839100000,24.589758) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509839160000,20.32305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509839220000,24.862545) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509839280000,23.40204) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509839340000,20.594818) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509839400000,20.134298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509839460000,24.673794) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509839520000,22.608637) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509839580000,21.010534) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509839640000,25.751518) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509839700000,23.135975) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509839760000,21.675468) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509839820000,20.077368) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509839880000,24.818352) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509839940000,22.753195) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509840000000,20.742302) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509840060000,20.694572) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509840120000,24.629416) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509840180000,23.3704) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509840240000,21.909895) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509840300000,23.50559) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509840360000,23.696247) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509840420000,23.243189) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509840480000,24.976482) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509840540000,25.57993) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509840600000,24.119427) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509840660000,25.503819) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509840720000,20.244865) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509840780000,20.197136) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509840840000,21.930428) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509840900000,20.469923) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509840960000,20.86207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509841020000,22.457766) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509841080000,20.997261) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509841140000,21.738306) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509841200000,23.673088) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509841260000,22.074986) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509841320000,22.265644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509841380000,23.998936) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509841440000,21.933964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509841500000,21.886234) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509841560000,25.821075) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509841620000,23.810184) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509841680000,22.34968) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509841740000,20.348413) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509841800000,24.887909) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509841860000,23.427404) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509841920000,20.81186) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509841980000,25.415247) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509842040000,23.954742) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509842100000,22.494238) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509842160000,20.429081) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509842220000,20.381351) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509842280000,24.571947) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509842340000,22.50679) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509842400000,21.046286) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509842460000,25.448185) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509842520000,22.188921) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509842580000,22.37958) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509842640000,20.919075) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509842700000,22.51477) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509842760000,23.457306) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509842820000,21.996801) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509842880000,23.179705) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509842940000,25.333527) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509843000000,23.873022) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509843060000,25.807802) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509843120000,24.347298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509843180000,24.950747) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509843240000,20.133652) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509843300000,24.874636) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509843360000,25.61568) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509843420000,21.211376) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509843480000,25.750872) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509843540000,25.337063) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509843600000,21.070354) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509843660000,21.022625) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509843720000,25.562119) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509843780000,23.496964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509843840000,21.68756) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509843900000,20.089457) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509843960000,24.0243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509844020000,22.563795) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509844080000,21.30478) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509844140000,25.706678) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509844200000,23.091133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509844260000,21.630629) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509844320000,21.720495) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509844380000,25.71923) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509844440000,24.258726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509844500000,22.247833) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509844560000,20.182676) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509844620000,25.59202) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509844680000,24.131516) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509844740000,25.864807) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509844800000,20.055466) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509844860000,24.658854) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509844920000,20.392145) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509844980000,21.13319) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509845040000,21.223059) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509845100000,22.818754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509845160000,23.210901) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509845220000,21.750397) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509845280000,23.483688) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509845340000,21.885586) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509845400000,22.828121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509845460000,24.011026) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509845520000,22.550522) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509845580000,23.15397) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509845640000,24.282795) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509845700000,22.82229) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509845760000,24.56332) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509845820000,20.159016) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509845880000,24.69851) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509845940000,23.439495) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509846000000,21.374338) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509846060000,25.776236) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509846120000,23.765343) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509846180000,21.901674) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509846240000,20.44117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509846300000,24.84307) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509846360000,23.382565) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509846420000,20.968508) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509846480000,21.058376) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509846540000,25.460274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509846600000,23.395117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509846660000,21.934612) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509846720000,20.931166) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509846780000,24.72841) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509846840000,23.267906) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509846900000,21.807402) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509846960000,23.742182) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509847020000,24.34563) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509847080000,22.33474) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509847140000,24.068031) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509847200000,20.35945) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509847260000,24.962837) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509847320000,20.696129) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509847380000,20.886787) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509847440000,25.426281) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509847500000,21.223467) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509847560000,25.762962) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509847620000,20.504007) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509847680000,21.68691) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509847740000,25.484343) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509847800000,20.225388) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509847860000,21.958681) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509847920000,22.048548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509847980000,20.450445) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509848040000,24.03639) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509848100000,22.575886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509848160000,21.115381) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509848220000,24.912626) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509848280000,23.65361) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509848340000,21.642717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509848400000,25.57756) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509848460000,23.97946) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509848520000,22.720444) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509848580000,22.81031) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509848640000,20.194765) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509848700000,24.596664) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509848760000,23.13616) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509848820000,22.973755) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509848880000,21.51325) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509848940000,25.91515) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509849000000,23.299604) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509849060000,22.040588) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509849120000,20.580084) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509849180000,22.17578) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509849240000,22.916824) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509849300000,22.456305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509849360000,24.391087) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509849420000,24.994535) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509849480000,23.53403) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509849540000,25.267323) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509849600000,25.65947) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509849660000,24.061367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509849720000,25.794659) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509849780000,24.334156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509849840000,24.470734) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509849900000,20.06643) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509849960000,24.055536) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509850020000,20.346954) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509850080000,22.080246) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509850140000,20.683634) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509850200000,25.22313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509850260000,22.607584) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509850320000,21.14708) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509850380000,25.750465) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509850440000,23.685308) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509850500000,22.224804) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509850560000,20.213911) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509850620000,24.212646) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509850680000,22.752142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509850740000,22.842009) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509850800000,21.381504) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509850860000,25.178751) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509850920000,24.175304) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509850980000,22.7148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509851040000,20.649641) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509851100000,25.05154) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509851160000,23.792524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509851220000,21.17698) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509851280000,25.716475) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509851340000,24.118374) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509851400000,20.053154) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509851460000,22.344572) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509851520000,20.33368) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509851580000,21.929375) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509851640000,22.670422) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509851700000,21.411406) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509851760000,23.144697) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509851820000,21.546595) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509851880000,21.737253) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509851940000,22.866077) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509852000000,21.405573) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509852060000,22.009022) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509852120000,23.742313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509852180000,23.281794) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509852240000,24.224329) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509852300000,25.820024) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509852360000,24.35952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509852420000,22.899014) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509852480000,20.484959) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509852540000,24.886856) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509852600000,23.426352) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509852660000,21.361195) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509852720000,20.102179) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509852780000,24.504078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509852840000,21.888533) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509852900000,21.9784) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509852960000,20.517895) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509853020000,25.927238) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509853080000,23.862082) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509853140000,21.851189) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509853200000,20.390684) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509853260000,24.38942) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509853320000,22.928915) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509853380000,21.46841) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509853440000,24.852865) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509853500000,23.456253) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509853560000,23.54612) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509853620000,25.279411) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509853680000,20.020458) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509853740000,24.422356) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509853800000,25.80675) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509853860000,20.547796) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509853920000,25.087292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509853980000,20.682985) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509854040000,24.618013) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509854100000,24.808672) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509854160000,20.541964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509854220000,24.943863) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509854280000,21.235281) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509854340000,23.170061) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509854400000,21.159168) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509854460000,21.762617) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509854520000,23.49591) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509854580000,22.236895) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509854640000,20.77639) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509854700000,24.573635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509854760000,22.562742) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509854820000,21.303726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509854880000,25.23857) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509854940000,23.640469) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509855000000,23.730335) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509855060000,21.11479) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509855120000,20.661732) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509855180000,25.06363) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509855240000,23.603127) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509855300000,21.537968) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509855360000,25.728565) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509855420000,24.130463) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509855480000,22.065306) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509855540000,20.604801) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509855600000,25.345785) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509855660000,20.94148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509855720000,22.68251) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509855780000,21.222006) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509855840000,22.955297) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509855900000,23.760237) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509855960000,22.299732) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509856020000,23.482635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509856080000,24.223682) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509856140000,22.021112) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509856200000,23.754404) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509856260000,22.2939) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509856320000,22.484558) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509856380000,24.281742) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509856440000,24.371609) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509856500000,25.112656) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509856560000,20.845947) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509856620000,25.247845) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509856680000,25.639994) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509856740000,21.373285) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509856800000,25.91278) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509856860000,24.314678) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509856920000,22.45101) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509856980000,20.440117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509857040000,24.979612) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509857100000,22.77686) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509857160000,22.866726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509857220000,22.413668) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509857280000,25.798122) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509857340000,24.20002) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509857400000,22.739515) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509857460000,21.480501) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509857520000,25.415342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509857580000,23.817242) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509857640000,21.806349) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509857700000,25.94268) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509857760000,24.482176) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509857820000,24.434446) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509857880000,20.167738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509857940000,20.358397) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509858000000,25.09938) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509858060000,20.695076) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509858120000,21.436123) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509858180000,25.975616) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509858240000,20.554054) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509858300000,21.157503) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509858360000,25.696999) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509858420000,21.43029) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509858480000,20.171274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509858540000,22.325096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509858600000,23.508) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509858660000,22.047495) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509858720000,22.788542) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509858780000,24.585726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509858840000,23.125221) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509858900000,23.31588) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509858960000,25.049171) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509859020000,23.652557) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509859080000,22.192053) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509859140000,20.126896) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509859200000,24.116003) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509859260000,24.068274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509859320000,23.010563) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509859380000,21.550058) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509859440000,20.089554) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509859500000,24.491451) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509859560000,22.077396) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509859620000,20.61689) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509859680000,25.156385) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509859740000,22.953632) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509859800000,21.694616) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509859860000,25.683723) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509859920000,23.618567) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509859980000,23.570837) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509860040000,22.110332) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509860100000,24.045113) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509860160000,24.235771) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509860220000,22.637669) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509860280000,24.370962) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509860340000,24.50754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509860400000,23.047035) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509860460000,24.64273) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509860520000,24.83339) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509860580000,23.574373) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509860640000,25.307665) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509860700000,25.259935) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509860760000,20.000982) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509860820000,21.183886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509860880000,25.92487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509860940000,20.52832) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509861000000,22.261612) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509861060000,20.801105) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509861120000,21.193254) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509861180000,22.788948) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509861240000,21.328444) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509861300000,25.867939) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509861360000,24.810226) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509861420000,24.762497) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509861480000,22.751606) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509861540000,20.68645) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509861600000,25.225945) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509861660000,23.82933) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509861720000,22.368826) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509861780000,25.75328) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509861840000,24.292776) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509861900000,22.896164) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509861960000,20.831007) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509862020000,25.370502) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509862080000,24.90998) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509862140000,22.707228) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509862200000,21.448212) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509862260000,25.987707) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509862320000,21.720999) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509862380000,22.324448) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509862440000,25.709087) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509862500000,21.442379) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509862560000,22.183426) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509862620000,20.585323) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509862680000,22.520105) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509862740000,22.710764) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509862800000,22.80063) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509862860000,24.396326) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509862920000,22.935822) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509862980000,23.878357) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509863040000,25.06126) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509863100000,23.46316) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509863160000,24.204205) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509863220000,20.138987) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509863280000,24.678482) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509863340000,23.08038) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509863400000,20.464834) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509863460000,20.011776) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509863520000,20.101643) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509863580000,23.898888) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509863640000,22.438385) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509863700000,20.427492) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509863760000,24.563824) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509863820000,22.965721) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509863880000,21.505217) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509863940000,20.044712) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509864000000,23.630657) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509864060000,22.032555) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509864120000,20.57205) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509864180000,24.506893) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509864240000,24.59676) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509864300000,23.200148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509864360000,20.584602) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509864420000,25.124098) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509864480000,23.663593) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509864540000,24.65482) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509864600000,25.395866) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509864660000,23.384974) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509864720000,25.118265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509864780000,25.923204) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509864840000,24.4627) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509864900000,20.195992) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509864960000,21.937021) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509865020000,20.33892) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509865080000,22.2737) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509865140000,20.813196) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509865200000,21.554241) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509865260000,23.149937) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509865320000,21.340534) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509865380000,22.08158) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509865440000,23.814873) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509865500000,22.21677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509865560000,20.868404) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509865620000,24.252857) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509865680000,24.342726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509865740000,22.744625) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509865800000,20.679466) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509865860000,25.420452) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509865920000,23.40956) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509865980000,21.206804) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509866040000,25.7463) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509866100000,24.487284) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509866160000,23.02678) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509866220000,20.824024) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509866280000,24.813133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509866340000,24.903) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509866400000,23.039331) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509866460000,21.44123) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509866520000,25.980726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509866580000,23.365181) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509866640000,21.300209) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509866700000,25.702106) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509866760000,21.435398) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509866820000,22.176445) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509866880000,20.36704) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509866940000,21.962736) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509867000000,22.703781) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509867060000,22.79365) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509867120000,24.526941) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509867180000,23.13033) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509867240000,23.320988) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509867300000,25.05428) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509867360000,23.593775) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509867420000,24.398712) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509867480000,20.132004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509867540000,24.121113) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509867600000,24.862158) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509867660000,21.465298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509867720000,20.004793) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509867780000,20.094662) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509867840000,23.479116) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509867900000,21.881014) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509867960000,20.622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509868020000,24.556843) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509868080000,23.096336) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509868140000,21.498236) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509868200000,25.084179) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509868260000,23.623674) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509868320000,22.16317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509868380000,20.565067) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509868440000,24.7014) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509868500000,24.24088) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509868560000,22.780375) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509868620000,20.577621) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509868680000,25.117115) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509868740000,23.052143) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509868800000,20.436598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509868860000,24.838497) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509868920000,23.377993) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509868980000,25.312773) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509869040000,20.05382) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509869100000,24.455719) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509869160000,25.638622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509869220000,21.93004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509869280000,20.671024) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509869340000,22.26672) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509869400000,20.806215) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509869460000,20.996874) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509869520000,22.931654) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509869580000,21.333551) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509869640000,22.074598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509869700000,23.80789) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509869760000,22.804443) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509869820000,23.407892) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509869880000,25.141186) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509869940000,25.231052) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509870000000,23.770548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509870060000,21.769283) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509870120000,25.75839) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509870180000,24.297886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509870240000,22.232727) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509870300000,20.836115) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509870360000,25.37561) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509870420000,22.760065) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509870480000,21.29956) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509870540000,25.902948) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509870600000,25.992815) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509870660000,23.927658) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509870720000,21.916765) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509870780000,20.318665) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509870840000,23.64904) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509870900000,22.188534) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509870960000,20.72803) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509871020000,22.323725) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509871080000,22.715872) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509871140000,21.255367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509871200000,22.988659) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509871260000,23.592108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509871320000,23.681976) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509871380000,25.066368) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509871440000,25.807415) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509871500000,24.209312) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509871560000,25.942604) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509871620000,24.68359) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509871680000,24.874249) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509871740000,20.469942) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509871800000,25.009438) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509871860000,20.75793) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509871920000,22.491222) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509871980000,20.89312) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509872040000,22.634151) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509872100000,24.367443) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509872160000,23.108427) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509872220000,21.510326) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509872280000,25.445168) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509872340000,23.434275) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509872400000,22.17526) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509872460000,25.972506) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509872520000,24.512001) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509872580000,23.051497) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509872640000,20.63744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509872700000,25.03934) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509872760000,25.129206) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509872820000,23.668701) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509872880000,21.603544) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509872940000,25.400974) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509873000000,23.390083) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509873060000,21.324924) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509873120000,25.86442) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509873180000,24.467808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509873240000,20.2011) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509873300000,20.391758) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509873360000,24.931253) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509873420000,20.728437) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509873480000,23.019855) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509873540000,21.559351) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509873600000,22.742254) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509873660000,23.345703) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509873720000,22.086689) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509873780000,23.81998) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509873840000,22.359474) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509873900000,22.962925) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509873960000,25.153275) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509874020000,23.69277) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509874080000,24.433815) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509874140000,20.02951) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509874200000,20.119379) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509874260000,20.511526) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509874320000,22.244818) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509874380000,20.646715) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509874440000,25.18621) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509874500000,23.322542) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509874560000,21.311651) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509874620000,25.713549) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509874680000,23.648392) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509874740000,22.389376) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509874800000,20.928871) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509874860000,20.881142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509874920000,24.265596) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509874980000,22.805092) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509875040000,20.74012) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509875100000,24.537365) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509875160000,23.07686) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509875220000,21.065968) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509875280000,25.202301) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509875340000,23.604198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509875400000,22.143694) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509875460000,23.876986) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509875520000,24.269133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509875580000,24.221403) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509875640000,25.954695) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509875700000,20.695742) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509875760000,25.235237) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509875820000,21.032421) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509875880000,21.22308) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509875940000,25.762573) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509876000000,21.495865) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509876060000,20.90521) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509876120000,21.646255) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509876180000,22.82916) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509876240000,21.368656) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509876300000,23.522476) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509876360000,25.457258) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509876420000,23.996754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509876480000,24.187412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509876540000,25.783108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509876600000,24.52409) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509876660000,23.063587) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509876720000,20.998428) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509876780000,25.400328) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509876840000,23.590923) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509876900000,21.525766) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509876960000,20.065262) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509877020000,20.017532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509877080000,24.557028) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509877140000,21.337015) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509877200000,25.87651) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509877260000,24.278408) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509877320000,22.213251) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509877380000,20.954235) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509877440000,24.943344) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509877500000,22.74059) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509877560000,21.280085) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509877620000,20.021069) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509877680000,21.75436) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509877740000,23.908182) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509877800000,21.89729) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509877860000,23.63058) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509877920000,24.573116) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509877980000,22.975014) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509878040000,24.708305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509878100000,24.898964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509878160000,24.445906) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509878220000,20.041601) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509878280000,24.581097) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509878340000,25.322142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509878400000,20.706535) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509878460000,20.658806) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509878520000,21.399853) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509878580000,23.133144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509878640000,21.67264) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509878700000,20.276026) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509878760000,23.66048) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509878820000,22.199978) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509878880000,20.739471) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509878940000,24.738207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509879000000,23.277702) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509879060000,21.26681) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509879120000,25.201653) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509879180000,25.153923) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509879240000,23.088951) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509879300000,21.628445) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509879360000,25.012901) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509879420000,23.414799) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509879480000,22.155783) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509879540000,20.090626) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509879600000,24.630121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509879660000,23.03202) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509879720000,20.617964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509879780000,25.15746) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509879840000,25.247326) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509879900000,20.843021) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509879960000,21.584068) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509880020000,25.774664) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509880080000,21.507956) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509880140000,22.111404) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509880200000,20.6509) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509880260000,23.391638) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509880320000,23.582296) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509880380000,21.984196) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509880440000,23.717487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509880500000,22.458471) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509880560000,24.74989) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509880620000,20.345585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509880680000,24.334692) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509880740000,25.075737) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509880800000,21.010519) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509880860000,25.412416) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509880920000,23.951912) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509880980000,21.336367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509881040000,20.077353) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509881100000,24.47925) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509881160000,22.414093) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509881220000,20.953588) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509881280000,20.493067) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509881340000,23.685846) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509881400000,22.225342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509881460000,20.764835) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509881520000,25.304333) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509881580000,23.303066) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509881640000,21.292173) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509881700000,25.831669) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509881760000,23.766512) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509881820000,22.3699) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509881880000,20.909395) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509881940000,24.29385) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509882000000,24.383717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509882060000,22.785616) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509882120000,24.720396) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509882180000,25.461443) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509882240000,23.45055) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509882300000,25.046246) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509882360000,21.690044) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509882420000,20.22954) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509882480000,21.962831) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509882540000,20.36473) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509882600000,20.756878) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509882660000,22.49017) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509882720000,22.580036) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509882780000,23.183487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509882840000,24.916779) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509882900000,23.107374) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509882960000,23.848421) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509883020000,25.444115) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509883080000,23.98361) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509883140000,22.724594) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509883200000,20.10905) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509883260000,24.510948) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509883320000,23.050444) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509883380000,20.38082) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509883440000,20.470686) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509883500000,24.872585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509883560000,22.257038) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509883620000,20.796535) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509883680000,25.53752) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509883740000,23.939417) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509883800000,21.87426) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509883860000,25.863367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509883920000,24.604351) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509883980000,22.401598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509884040000,20.941093) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509884100000,21.03096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509884160000,24.415415) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509884220000,23.018803) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509884280000,21.558298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509884340000,23.29159) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509884400000,24.032635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509884460000,23.44198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509884520000,24.624886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509884580000,25.36593) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509884640000,23.905426) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509884700000,25.70261) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509884760000,24.242105) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509884820000,25.983135) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509884880000,21.716427) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509884940000,20.118326) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509885000000,21.060862) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509885060000,22.794153) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509885120000,20.78326) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509885180000,21.38671) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509885240000,23.321491) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509885300000,21.860985) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509885360000,20.40048) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509885420000,24.197727) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509885480000,21.582367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509885540000,21.672234) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509885600000,25.607077) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509885660000,24.008976) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509885720000,22.54847) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509885780000,20.134415) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509885840000,24.673908) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509885900000,23.075808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509885960000,21.615303) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509886020000,25.751635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509886080000,23.740742) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509886140000,22.142641) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509886200000,20.077484) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509886260000,20.16735) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509886320000,24.908335) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509886380000,20.50403) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509886440000,20.694689) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509886500000,25.234184) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509886560000,21.974922) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509886620000,22.578371) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509886680000,21.117867) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509886740000,22.30077) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509886800000,23.243305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509886860000,21.645205) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509886920000,23.378496) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509886980000,23.468363) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509887040000,23.659021) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509887100000,25.456205) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509887160000,23.9957) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509887220000,24.736748) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509887280000,20.47004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509887340000,25.073425) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509887400000,25.264084) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509887460000,20.997375) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509887520000,25.536871) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509887580000,23.334303) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509887640000,21.269144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509887700000,20.808624) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509887760000,25.34812) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509887820000,23.145367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509887880000,21.88635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509887940000,20.425844) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509888000000,23.810299) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509888060000,22.212198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509888120000,20.953182) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509888180000,25.492678) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509888240000,23.42752) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509888300000,21.829418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509888360000,21.368898) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509888420000,25.50523) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509888480000,24.044725) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509888540000,22.446625) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509888600000,24.179916) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509888660000,25.378021) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509888720000,23.917515) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509888780000,25.51321) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509888840000,20.254257) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509888900000,24.995241) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509888960000,20.178144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509889020000,20.781593) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509889080000,20.871462) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509889140000,22.604753) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509889200000,21.345737) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509889260000,21.949186) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509889320000,23.132092) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509889380000,21.671587) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509889440000,22.614122) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509889500000,24.209816) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509889560000,22.749311) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509889620000,22.93997) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509889680000,24.068794) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509889740000,22.470692) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509889800000,22.56056) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509889860000,20.495403) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509889920000,24.48451) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509889980000,23.087898) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509890040000,21.022741) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509890100000,25.562237) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509890160000,24.10173) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509890220000,22.705118) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509890280000,20.089573) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509890340000,24.629068) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509890400000,23.168564) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509890460000,21.1673) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509890520000,21.257166) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509890580000,25.246273) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509890640000,23.181116) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509890700000,21.583015) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509890760000,21.129955) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509890820000,22.863247) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509890880000,23.053905) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509890940000,21.455805) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509891000000,23.390585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509891060000,24.131632) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509891120000,22.671127) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509891180000,24.266823) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509891240000,20.007853) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509891300000,24.748837) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509891360000,20.482128) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509891420000,24.884027) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509891480000,25.625072) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509891540000,21.009466) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509891600000,25.548962) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509891660000,20.15241) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509891720000,21.885702) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509891780000,25.82073) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509891840000,20.011389) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509891900000,21.607082) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509891960000,21.69695) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509892020000,20.236446) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509892080000,24.372778) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509892140000,22.774677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509892200000,20.763784) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509892260000,24.698626) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509892320000,23.439611) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509892380000,21.841509) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509892440000,20.381004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509892500000,23.76546) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509892560000,22.506443) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509892620000,22.458714) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509892680000,20.393557) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509892740000,24.933052) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509892800000,22.92216) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509892860000,21.72685) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509892920000,20.266346) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509892980000,24.805841) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509893040000,20.539133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509893100000,21.344072) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509893160000,25.33318) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509893220000,21.066471) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509893280000,21.807518) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509893340000,21.759789) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509893400000,23.694569) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509893460000,23.885227) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509893520000,22.424723) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509893580000,24.020416) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509893640000,22.761402) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509893700000,23.502447) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509893760000,24.685352) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509893820000,23.08725) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509893880000,23.22383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509893940000,24.95712) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509894000000,23.496616) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509894060000,23.448887) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509894120000,20.833342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509894180000,25.574326) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509894240000,24.113821) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509894300000,21.911066) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509894360000,20.450562) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509894420000,24.64116) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509894480000,22.576002) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509894540000,20.9779) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509894600000,25.517395) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509894660000,24.258379) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509894720000,21.642834) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509894780000,21.595104) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509894840000,20.1346) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509894900000,24.069443) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509894960000,23.616385) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509895020000,22.018282) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509895080000,25.402737) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509895140000,23.942232) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509895200000,22.683216) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509895260000,24.278912) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509895320000,25.019958) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509895380000,23.009066) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509895440000,24.943846) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509895500000,21.097668) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509895560000,25.637163) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509895620000,21.370455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509895680000,21.561113) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509895740000,20.164501) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509895800000,21.897793) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509895860000,20.437288) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509895920000,21.178333) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509895980000,22.169561) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509896040000,20.158669) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509896100000,20.899715) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509896160000,22.633007) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509896220000,22.585278) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509896280000,21.326262) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509896340000,24.710716) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509896400000,23.250212) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509896460000,21.65211) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509896520000,25.78844) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509896580000,24.327938) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509896640000,22.317045) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509896700000,20.11429) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509896760000,24.855274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509896820000,23.39477) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509896880000,23.484638) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509896940000,21.281883) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509897000000,25.27099) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509897060000,24.817932) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509897120000,22.752773) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509897180000,21.154673) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509897240000,25.694168) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509897300000,23.280111) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509897360000,21.819607) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509897420000,20.221506) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509897480000,21.954798) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509897540000,22.897333) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509897600000,22.436813) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509897660000,24.032507) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509897720000,24.773554) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509897780000,23.31305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509897840000,25.24783) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509897900000,23.649727) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509897960000,23.840385) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509898020000,25.573677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509898080000,23.508705) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509898140000,24.112156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509898200000,25.845448) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509898260000,23.834555) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509898320000,20.125973) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509898380000,21.923157) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509898440000,20.462652) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509898500000,25.002148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509898560000,22.386602) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509898620000,20.98999) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509898680000,25.529484) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509898740000,23.464327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509898800000,22.003822) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509898860000,20.60721) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509898920000,23.991665) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509898980000,22.53116) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509899040000,22.621029) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509899100000,21.022926) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509899160000,25.069906) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509899220000,23.059013) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509899280000,21.598509) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509899340000,25.395756) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509899400000,24.13674) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509899460000,22.676235) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509899520000,20.06069) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509899580000,24.46259) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509899640000,23.203573) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509899700000,24.936865) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509899760000,21.228283) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509899820000,25.63018) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509899880000,20.813086) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509899940000,21.755621) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509900000000,20.295116) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509900060000,21.89081) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509900120000,20.430305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509900180000,20.016497) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509900240000,21.749788) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509900300000,20.151688) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509900360000,20.892733) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509900420000,22.827515) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509900480000,22.366993) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509900540000,22.970444) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509900600000,24.703735) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509900660000,23.243229) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509900720000,21.984215) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509900780000,25.78146) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509900840000,23.770567) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509900900000,22.310062) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509900960000,20.446394) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509901020000,24.848293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509901080000,23.387789) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509901140000,20.772243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509901200000,20.86211) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509901260000,20.271456) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509901320000,24.810951) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509901380000,22.745792) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509901440000,20.7349) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509901500000,25.338287) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509901560000,23.27313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509901620000,21.812626) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509901680000,20.352121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509901740000,22.149305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509901800000,22.339964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509901860000,22.42983) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509901920000,24.163122) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509901980000,24.766571) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509902040000,23.507557) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509902100000,24.69046) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509902160000,25.431507) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509902220000,23.833405) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509902280000,24.962229) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509902340000,23.501724) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509902400000,23.692383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509902460000,25.288078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509902520000,24.029062) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509902580000,20.32048) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509902640000,22.053772) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509902700000,20.455671) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509902760000,20.646328) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509902820000,22.58111) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509902880000,21.120605) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509902940000,25.522503) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509903000000,23.457346) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509903060000,21.647942) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509903120000,20.187437) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509903180000,23.984684) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509903240000,22.524178) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509903300000,22.614046) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509903360000,21.005947) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509903420000,25.407845) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509903480000,23.94734) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509903540000,22.486835) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509903600000,20.623167) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509903660000,25.025066) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509903720000,23.014174) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509903780000,20.949017) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509903840000,25.69) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509903900000,24.0919) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509903960000,25.825191) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509904020000,21.566221) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509904080000,20.105717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509904140000,21.9029) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509904200000,22.643948) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509904260000,21.183441) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509904320000,22.366346) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509904380000,22.365328) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509904440000,20.904823) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509904500000,22.638115) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509904560000,21.17761) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509904620000,21.982548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509904680000,23.165453) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509904740000,23.25532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509904800000,23.996367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509904860000,25.59206) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509904920000,24.333046) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509904980000,24.523705) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509905040000,20.256996) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509905100000,24.658894) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509905160000,23.399878) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509905220000,21.33472) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509905280000,25.323828) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509905340000,23.725727) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509905400000,22.668015) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509905460000,22.757883) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509905520000,21.297379) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509905580000,25.699276) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509905640000,23.08373) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509905700000,21.824717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509905760000,20.36421) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509905820000,24.161457) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509905880000,22.700953) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509905940000,20.891548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509906000000,24.826391) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509906060000,23.22829) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509906120000,23.318157) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509906180000,25.051449) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509906240000,25.443596) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509906300000,23.845495) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509906360000,25.578787) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509906420000,20.319832) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509906480000,24.25486) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509906540000,25.850555) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509906600000,20.041214) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509906660000,24.580708) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509906720000,20.51549) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509906780000,24.917389) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509906840000,21.208807) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509906900000,22.39171) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509906960000,20.931206) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509907020000,21.736145) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509907080000,23.469437) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509907140000,22.00893) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509907200000,22.199589) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509907260000,23.996773) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509907320000,22.536268) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509907380000,21.075764) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509907440000,25.010607) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509907500000,24.41995) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509907560000,23.95943) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509907620000,21.894274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509907680000,20.43377) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509907740000,24.835667) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509907800000,23.57665) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509907860000,20.961105) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509907920000,25.5006) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509907980000,23.9025) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509908040000,22.038832) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509908100000,20.578327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509908160000,24.567434) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509908220000,22.364681) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509908280000,22.454548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509908340000,21.195532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509908400000,22.928823) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509908460000,23.532272) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509908520000,21.521381) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509908580000,22.650204) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509908640000,23.39125) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509908700000,21.793148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509908760000,23.52644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509908820000,23.918589) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509908880000,22.458084) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509908940000,24.05378) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509909000000,24.143646) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509909060000,24.884693) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509909120000,20.269085) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509909180000,24.670984) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509909240000,25.41203) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509909300000,21.14532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509909360000,25.886307) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509909420000,24.288204) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509909480000,21.672659) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509909540000,20.212154) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509909600000,25.759096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509909660000,23.556341) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509909720000,23.64621) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509909780000,21.635317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509909840000,25.57016) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509909900000,24.173546) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509909960000,22.713041) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509910020000,21.252537) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509910080000,24.636992) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509910140000,23.24038) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509910200000,21.779875) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509910260000,25.714718) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509910320000,24.254213) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509910380000,24.206484) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509910440000,21.792427) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509910500000,20.331923) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509910560000,24.871418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509910620000,20.467113) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509910680000,20.603691) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509910740000,24.592798) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509910800000,20.32609) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509910860000,20.929539) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509910920000,25.670525) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509910980000,21.403816) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509911040000,21.594475) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509911100000,21.546745) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509911160000,23.280037) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509911220000,22.02102) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509911280000,22.762068) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509911340000,24.357761) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509911400000,22.34687) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509911460000,23.289404) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509911520000,25.022697) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509911580000,23.424595) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509911640000,21.96409) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509911700000,20.355991) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509911760000,24.895487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509911820000,24.847757) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509911880000,22.7826) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509911940000,21.322094) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509912000000,25.512691) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509912060000,23.309937) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509912120000,21.849432) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509912180000,20.388927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509912240000,25.129913) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509912300000,22.927158) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509912360000,20.916265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509912420000,25.455761) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509912480000,23.592093) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509912540000,23.544363) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509912600000,22.083858) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509912660000,25.468313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509912720000,24.007809) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509912780000,21.805239) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509912840000,23.53853) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509912900000,24.279577) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509912960000,22.268684) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509913020000,24.065868) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509913080000,24.806915) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509913140000,23.346409) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509913200000,25.0797) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509913260000,25.031971) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509913320000,25.42412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509913380000,21.157412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509913440000,25.696907) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509913500000,20.300356) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509913560000,22.235138) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509913620000,20.224245) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509913680000,20.96529) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509913740000,22.560986) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509913800000,22.107927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509913860000,20.647423) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509913920000,24.031878) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509913980000,23.984146) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509914040000,22.523643) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509914100000,20.659975) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509914160000,25.19947) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509914220000,23.601368) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509914280000,20.985823) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509914340000,25.726807) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509914400000,24.266302) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509914460000,22.668201) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509914520000,20.603043) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509914580000,24.79364) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509914640000,24.883507) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509914700000,22.680754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509914760000,21.22025) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509914820000,25.759743) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509914880000,22.53973) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509914940000,20.94163) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509915000000,25.481125) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509915060000,21.214417) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509915120000,22.156952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509915180000,20.558851) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509915240000,21.741755) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509915300000,22.4828) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509915360000,22.572668) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509915420000,24.369852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509915480000,22.909348) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509915540000,23.100006) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509915600000,24.833298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509915660000,23.436684) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509915720000,24.17773) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509915780000,25.911022) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509915840000,23.900131) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509915900000,20.406334) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509915960000,22.139626) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509916020000,20.679121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509916080000,20.768988) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509916140000,24.566235) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509916200000,22.75683) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509916260000,21.296326) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509916320000,25.231167) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509916380000,23.633066) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509916440000,22.37405) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509916500000,25.758507) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509916560000,24.298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509916620000,22.6999) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509916680000,21.440884) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509916740000,25.375727) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509916800000,24.915207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509916860000,23.317104) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509916920000,21.251947) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509916980000,25.186975) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509917040000,23.72647) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509917100000,25.322165) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509917160000,25.512823) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509917220000,24.253807) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509917280000,25.987099) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509917340000,20.590548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509917400000,25.130043) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509917460000,20.514437) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509917520000,22.805855) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509917580000,21.207754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509917640000,22.941046) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509917700000,21.480541) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509917760000,21.872688) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509917820000,23.468384) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509917880000,22.007877) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509917940000,22.748924) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509918000000,25.489662) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509918060000,23.89156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509918120000,24.082218) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509918180000,25.81551) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509918240000,25.905378) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509918300000,24.508766) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509918360000,22.443607) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509918420000,20.432716) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509918480000,24.97221) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509918540000,22.970945) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509918600000,21.51044) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509918660000,20.049936) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509918720000,23.434391) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509918780000,22.037779) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509918840000,20.577274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509918900000,20.667141) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509918960000,24.601984) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509919020000,23.003883) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509919080000,20.388523) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509919140000,24.323364) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509919200000,22.86286) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509919260000,21.26476) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509919320000,23.19954) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509919380000,23.390198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509919440000,21.929693) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509919500000,23.525389) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509919560000,24.467924) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509919620000,24.55779) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509919680000,25.740696) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509919740000,20.344145) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509919800000,24.88364) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509919860000,20.81842) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509919920000,25.357916) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509919980000,25.961365) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509920040000,21.144268) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509920100000,20.69121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509920160000,21.432257) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509920220000,23.02795) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509920280000,21.567446) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509920340000,23.308477) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509920400000,25.243258) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509920460000,23.645157) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509920520000,22.18465) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509920580000,20.119493) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509920640000,24.310091) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509920700000,22.711988) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509920760000,20.646832) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509920820000,25.186327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509920880000,23.92731) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509920940000,22.32921) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509921000000,25.713665) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509921060000,25.803532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509921120000,24.343027) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509921180000,21.535805) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509921240000,20.0753) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509921300000,24.064407) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509921360000,21.99925) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509921420000,20.602638) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509921480000,25.142134) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509921540000,20.875425) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509921600000,21.066084) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509921660000,25.669472) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509921720000,21.402763) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509921780000,23.694181) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509921840000,22.233677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509921900000,23.829372) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509921960000,24.22152) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509922020000,22.761015) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509922080000,24.494307) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509922140000,22.896204) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509922200000,24.644697) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509922260000,25.8276) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509922320000,24.367096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509922380000,24.970545) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509922440000,20.905327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509922500000,20.995193) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509922560000,21.185852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509922620000,22.781548) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509922680000,21.321041) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509922740000,20.062027) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509922800000,23.996868) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509922860000,22.398767) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509922920000,20.387875) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509922980000,24.524206) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509923040000,23.063702) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509923100000,21.465601) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509923160000,21.555468) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509923220000,24.939922) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509923280000,22.87495) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509923340000,21.276848) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509923400000,25.211693) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509923460000,23.751186) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509923520000,21.941784) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509923580000,25.739029) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509923640000,24.278524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509923700000,22.81802) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509923760000,24.7528) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509923820000,25.35625) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509923880000,24.89573) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509923940000,20.62902) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509924000000,21.370068) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509924060000,25.973455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509924120000,21.706747) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509924180000,21.897406) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509924240000,20.436901) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509924300000,23.040041) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509924360000,21.579536) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509924420000,22.320583) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509924480000,23.503487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509924540000,22.106874) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509924600000,24.398293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509924660000,20.131584) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509924720000,24.67108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509924780000,23.072977) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509924840000,20.658922) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509924900000,25.198418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509924960000,23.737911) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509925020000,21.535158) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509925080000,20.276142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509925140000,24.26525) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509925200000,22.200092) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509925260000,20.601992) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509925320000,20.691858) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509925380000,24.626886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509925440000,22.011341) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509925500000,20.413239) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509925560000,24.952736) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509925620000,23.089066) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509925680000,21.628561) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509925740000,20.03046) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509925800000,23.414915) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509925860000,22.1559) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509925920000,20.695395) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509925980000,22.29109) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509926040000,24.582508) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509926100000,22.571615) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509926160000,24.506397) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509926220000,25.109846) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509926280000,23.649342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509926340000,25.382633) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509926400000,20.580736) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509926460000,24.982635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509926520000,20.715927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509926580000,25.255423) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509926640000,20.197958) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509926700000,21.793652) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509926760000,21.333132) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509926820000,22.074179) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509926880000,23.80747) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509926940000,22.410858) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509927000000,20.950354) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509927060000,24.334808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509927120000,22.874302) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509927180000,21.47769) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509927240000,25.412533) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509927300000,23.952028) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509927360000,21.941135) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509927420000,25.133915) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509927480000,25.223782) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509927540000,23.763277) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509927600000,22.302773) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509927660000,20.100018) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509927720000,24.290615) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509927780000,22.830109) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509927840000,20.764952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509927900000,25.166851) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509927960000,23.907835) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509928020000,21.29229) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509928080000,25.831785) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509928140000,25.784056) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509928200000,21.517347) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509928260000,22.459883) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509928320000,20.44899) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509928380000,22.044685) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509928440000,22.785732) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509928500000,22.332672) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509928560000,24.065964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509928620000,22.467863) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509928680000,22.65852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509928740000,24.593302) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509928800000,23.132797) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509928860000,25.28662) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509928920000,21.01991) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509928980000,25.009018) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509929040000,25.951553) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509929100000,21.547249) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509929160000,20.086742) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509929220000,24.626238) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509929280000,22.212183) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509929340000,20.61408) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509929400000,25.153576) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509929460000,23.088419) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509929520000,21.023447) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509929580000,20.975718) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509929640000,24.360172) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509929700000,22.899668) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509929760000,21.439163) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509929820000,20.04255) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509929880000,23.977392) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509929940000,21.9665) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509930000000,20.505995) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509930060000,24.50473) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509930120000,23.044226) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509930180000,21.583721) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509930240000,24.968176) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509930300000,24.920446) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509930360000,23.66143) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509930420000,25.394722) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509930480000,20.135769) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509930540000,24.537666) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509930600000,20.728018) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509930660000,21.469063) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509930720000,20.008558) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509930780000,21.604254) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509930840000,20.345238) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509930900000,20.535896) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509930960000,22.269188) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509931020000,22.221458) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509931080000,22.962505) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509931140000,24.897285) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509931200000,22.886393) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509931260000,23.489841) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509931320000,25.223133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509931380000,23.964119) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509931440000,22.503613) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509931500000,20.30086) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509931560000,24.289967) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509931620000,22.224995) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509931680000,20.159838) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509931740000,20.112108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509931800000,24.651604) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509931860000,22.036058) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509931920000,20.777042) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509931980000,25.17894) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509932040000,23.718435) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509932100000,21.653278) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509932160000,25.843876) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509932220000,24.245773) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509932280000,22.180616) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509932340000,20.720112) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509932400000,20.809978) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509932460000,22.607162) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509932520000,22.797821) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509932580000,21.337317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509932640000,23.070608) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509932700000,23.786196) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509932760000,22.325691) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509932820000,23.508595) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509932880000,24.249641) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509932940000,22.85303) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509933000000,24.58632) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509933060000,23.125816) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509933120000,24.866846) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509933180000,20.462542) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509933240000,25.203526) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509933300000,25.944572) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509933360000,21.677864) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509933420000,20.079762) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509933480000,20.471909) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509933540000,22.2052) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509933600000,20.744696) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509933660000,25.146595) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509933720000,22.47697) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509933780000,20.466078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509933840000,20.555944) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509933900000,24.353191) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509933960000,22.892685) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509934020000,21.63367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509934080000,25.018124) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509934140000,23.420023) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509934200000,21.959518) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509934260000,20.700502) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509934320000,24.635345) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509934380000,23.037243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509934440000,21.026352) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509934500000,25.162683) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509934560000,25.25255) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509934620000,23.65445) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509934680000,25.387741) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509934740000,25.5784) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509934800000,25.12534) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509934860000,20.721035) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509934920000,21.462082) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509934980000,20.001575) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509935040000,21.38597) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509935100000,21.98942) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509935160000,20.528913) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509935220000,22.262207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509935280000,22.352074) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509935340000,23.157013) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509935400000,24.339916) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509935460000,22.879412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509935520000,23.620457) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509935580000,25.41764) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509935640000,23.957136) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509935700000,24.147795) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509935760000,25.881086) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509935820000,23.678516) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509935880000,22.218014) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509935940000,20.152855) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509936000000,25.692335) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509936060000,24.094234) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509936120000,22.230566) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509936180000,20.77006) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509936240000,25.309555) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509936300000,23.711454) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509936360000,21.297398) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509936420000,25.836893) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509936480000,24.376389) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509936540000,22.173634) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509936600000,20.91462) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509936660000,20.454098) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509936720000,24.38894) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509936780000,22.79084) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509936840000,21.330336) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509936900000,24.071072) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509936960000,24.26173) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509937020000,22.66363) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509937080000,24.396921) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509937140000,25.339457) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509937200000,23.878952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509937260000,25.474648) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509937320000,25.665304) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509937380000,25.755173) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509937440000,21.689953) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509937500000,20.091852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509937560000,20.832897) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509937620000,22.015802) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509937680000,20.756786) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509937740000,21.360235) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509937800000,23.093527) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509937860000,21.633022) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509937920000,21.219213) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509937980000,22.814907) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509938040000,21.354403) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509938100000,21.444271) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509938160000,25.379112) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509938220000,23.982502) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509938280000,21.97161) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509938340000,25.906452) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509938400000,24.445946) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509938460000,23.049334) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509938520000,21.588829) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509938580000,24.973284) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509938640000,23.51278) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509938700000,22.116167) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509938760000,20.05101) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509938820000,20.140877) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509938880000,24.129986) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509938940000,21.92723) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509939000000,21.47417) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509939060000,20.013666) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509939120000,21.746958) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509939180000,22.350407) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509939240000,20.541004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509939300000,22.274296) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509939360000,23.015343) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509939420000,21.41724) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509939480000,23.35202) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509939540000,25.093052) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509939600000,23.632547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509939660000,25.228243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509939720000,23.767738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509939780000,24.710274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509939840000,25.893177) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509939900000,24.295074) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509939960000,25.036121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509940020000,20.164946) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509940080000,24.704441) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509940140000,23.106339) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509940200000,20.490793) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509940260000,20.580662) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509940320000,25.321646) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509940380000,23.118893) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509940440000,21.658386) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509940500000,25.647495) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509940560000,23.783827) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509940620000,22.185724) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509940680000,20.72522) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509940740000,25.264715) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509940800000,22.850658) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509940860000,21.252558) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509940920000,21.342424) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509940980000,25.277267) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509941040000,23.816763) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509941100000,23.226107) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509941160000,20.610561) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509941220000,25.150057) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509941280000,23.689552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509941340000,25.486736) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509941400000,20.227783) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509941460000,24.21689) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509941520000,25.950182) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509941580000,20.75512) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509941640000,20.844988) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509941700000,22.57828) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509941760000,22.768938) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509941820000,21.170835) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509941880000,23.105618) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509941940000,21.645113) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509942000000,22.386158) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509942060000,23.981853) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509942120000,21.366493) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509942180000,22.10754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509942240000,23.840832) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509942300000,22.24273) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509942360000,22.332598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509942420000,25.918541) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509942480000,24.458036) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509942540000,22.859936) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509942600000,20.794777) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509942660000,25.535763) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509942720000,23.52487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509942780000,21.322115) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509942840000,25.86161) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509942900000,24.602594) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509942960000,23.14209) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509943020000,20.939335) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509943080000,20.478815) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509943140000,25.01831) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509943200000,23.9606) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509943260000,22.362497) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509943320000,20.901993) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509943380000,24.286448) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509943440000,23.027431) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509943500000,21.42933) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509943560000,23.162622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509943620000,23.903667) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509943680000,22.094265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509943740000,23.68996) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509943800000,25.981379) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509943860000,24.520874) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509943920000,20.254166) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509943980000,24.857552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509944040000,25.04821) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509944100000,20.781504) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509944160000,25.321) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509944220000,25.31998) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509944280000,21.053272) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509944340000,25.04238) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509944400000,25.783424) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509944460000,21.580608) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509944520000,21.670477) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509944580000,20.209972) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509944640000,23.594427) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509944700000,21.996325) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509944760000,20.73731) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509944820000,24.672153) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509944880000,23.211647) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509944940000,21.613546) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509945000000,25.19949) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509945060000,23.738985) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509945120000,22.27848) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509945180000,22.230751) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509945240000,20.165594) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509945300000,25.162148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509945360000,23.701643) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509945420000,21.498888) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509945480000,20.038383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509945540000,24.779367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509945600000,22.163822) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509945660000,20.565722) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509945720000,25.105217) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509945780000,21.039997) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509945840000,21.781044) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509945900000,21.733315) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509945960000,22.916218) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509946020000,23.657265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509946080000,22.398249) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509946140000,23.993942) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509946200000,22.53344) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509946260000,22.724096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509946320000,23.85292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509946380000,22.25482) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509946440000,22.995865) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509946500000,24.729156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509946560000,22.919754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509946620000,25.073576) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509946680000,20.806868) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509946740000,25.346363) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509946800000,23.885859) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509946860000,21.884592) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509946920000,25.8737) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509946980000,24.413197) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509947040000,22.348038) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509947100000,20.951426) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509947160000,25.490921) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509947220000,22.875376) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509947280000,21.414871) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509947340000,21.367142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509947400000,20.914083) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509947460000,24.848927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509947520000,22.838032) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509947580000,21.239931) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509947640000,25.376263) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509947700000,23.915758) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509947760000,22.455254) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509947820000,24.05095) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509947880000,24.443096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509947940000,22.982592) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509948000000,24.715883) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509948060000,20.869705) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509948120000,25.409199) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509948180000,20.793592) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509948240000,21.53464) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509948300000,25.936537) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509948360000,21.669828) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509948420000,25.604856) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509948480000,25.795515) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509948540000,21.39121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509948600000,25.930706) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509948660000,20.87324) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509948720000,22.606533) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509948780000,22.558804) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509948840000,22.749462) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509948900000,24.482754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509948960000,23.223738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509949020000,21.625635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509949080000,25.560478) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509949140000,23.549585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509949200000,22.29057) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509949260000,20.087816) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509949320000,24.627312) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509949380000,23.166807) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509949440000,22.454016) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509949500000,22.406286) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509949560000,20.945782) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509949620000,25.485275) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509949680000,23.420118) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509949740000,22.023506) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509949800000,20.012613) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509949860000,23.947456) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509949920000,22.486952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509949980000,21.09034) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509950040000,22.823631) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509950100000,23.01429) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509950160000,23.104156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509950220000,24.699852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509950280000,25.642387) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509950340000,24.181883) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509950400000,25.364786) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509950460000,25.968235) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509950520000,23.903263) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509950580000,25.636555) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509950640000,24.17605) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509950700000,24.7795) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509950760000,20.163893) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509950820000,24.703388) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509950880000,20.994806) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509950940000,22.590502) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509951000000,21.129997) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509951060000,21.522144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509951120000,23.255436) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509951180000,21.657333) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509951240000,20.196829) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509951300000,24.33316) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509951360000,22.32227) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509951420000,20.724167) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509951480000,24.65901) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509951540000,24.205952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509951600000,24.295818) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509951660000,22.697716) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509951720000,20.082172) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509951780000,24.621666) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509951840000,23.362652) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509951900000,21.159897) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509951960000,25.699392) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509952020000,23.6885) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509952080000,21.824831) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509952140000,20.22673) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509952200000,24.766224) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509952260000,20.499517) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509952320000,22.240547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509952380000,20.843935) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509952440000,22.577227) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509952500000,23.318274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509952560000,21.857769) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509952620000,22.848995) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509952680000,23.039654) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509952740000,21.57915) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509952800000,23.31244) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509952860000,21.915829) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509952920000,22.656876) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509952980000,23.839779) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509953040000,23.929646) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509953100000,24.533096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509953160000,20.467876) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509953220000,25.007372) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509953280000,25.19803) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509953340000,20.793724) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509953400000,25.53471) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509953460000,24.074203) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509953520000,22.009047) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509953580000,20.410946) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509953640000,25.407497) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509953700000,23.342342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509953760000,23.432209) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509953820000,21.834106) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509953880000,20.373602) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509953940000,23.959547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509954000000,22.499043) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509954060000,20.90094) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509954120000,24.835783) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509954180000,23.576767) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509954240000,21.565874) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509954300000,25.363121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509954360000,23.902615) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509954420000,23.992483) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509954480000,25.927265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509954540000,20.530714) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509954600000,24.519821) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509954660000,20.253113) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509954720000,20.38969) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509954780000,24.79159) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509954840000,20.524881) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509954900000,20.71554) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509954960000,25.456524) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509955020000,21.05222) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509955080000,25.591713) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509955140000,21.883133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509955200000,23.066036) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509955260000,21.669424) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509955320000,22.41047) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509955380000,24.14376) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509955440000,22.683258) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509955500000,21.286644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509955560000,24.6711) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509955620000,23.210594) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509955680000,21.75009) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509955740000,20.554781) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509955800000,25.094276) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509955860000,24.633757) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509955920000,22.5686) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509955980000,20.970497) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509956040000,25.711483) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509956100000,24.250977) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509956160000,21.635433) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509956220000,20.03733) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509956280000,24.778315) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509956340000,22.713158) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509956400000,21.252653) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509956460000,25.65455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509956520000,23.240496) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509956580000,23.330362) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509956640000,21.869858) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509956700000,23.465553) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509956760000,24.2066) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509956820000,21.59124) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509956880000,23.324532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509956940000,23.92798) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509957000000,22.467476) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509957060000,24.402256) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509957120000,24.592915) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509957180000,22.994812) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509957240000,24.728104) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509957300000,24.817972) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509957360000,25.760508) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509957420000,21.356203) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509957480000,25.34531) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509957540000,20.086355) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509957600000,22.021137) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509957660000,20.423035) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509957720000,24.96253) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509957780000,22.346985) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509957840000,21.893927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509957900000,20.295824) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509957960000,24.230667) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509958020000,24.320536) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509958080000,22.309643) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509958140000,20.308378) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509958200000,24.847874) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509958260000,23.387367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509958320000,21.926863) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509958380000,25.925598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509958440000,23.914705) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509958500000,22.4542) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509958560000,20.389044) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509958620000,24.992432) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509958680000,25.082298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509958740000,22.466753) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509958800000,21.006248) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509958860000,25.408146) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509958920000,20.536972) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509958980000,21.278017) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509959040000,25.267124) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509959100000,20.86282) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509959160000,21.805355) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509959220000,20.34485) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509959280000,22.078142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509959340000,20.48004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509959400000,22.221071) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509959460000,24.155851) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509959520000,22.695347) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509959580000,23.298796) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509959640000,25.03209) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509959700000,23.222685) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509959760000,23.96373) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509959820000,25.559425) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509959880000,24.09892) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509959940000,23.645863) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509960000000,21.030317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509960060000,25.432215) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509960120000,25.522083) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509960180000,23.456926) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509960240000,22.19791) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509960300000,20.599808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509960360000,23.984264) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509960420000,22.523758) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509960480000,21.264744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509960540000,25.666641) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509960600000,23.601484) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509960660000,21.590591) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509960720000,20.331575) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509960780000,24.128822) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509960840000,24.218689) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509960900000,22.758184) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509960960000,20.14264) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509961020000,23.94007) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509961080000,22.479565) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509961140000,24.212856) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509961200000,24.953903) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509961260000,23.557291) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509961320000,24.740194) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509961380000,25.481241) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509961440000,24.020737) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509961500000,25.81792) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509961560000,25.907787) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509961620000,20.098446) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509961680000,21.831738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509961740000,20.233637) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509961800000,21.176172) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509961860000,22.909464) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509961920000,20.898571) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509961980000,21.50202) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509962040000,24.242758) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509962100000,22.782253) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509962160000,21.321749) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509962220000,25.118994) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509962280000,24.658474) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509962340000,23.399458) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509962400000,21.334301) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509962460000,25.736198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509962520000,24.275694) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509962580000,21.861639) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509962640000,20.401134) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509962700000,24.803032) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509962760000,23.342527) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509962820000,21.478859) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509962880000,25.467966) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509962940000,25.420237) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509963000000,23.35508) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509963060000,21.894575) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509963120000,25.829601) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509963180000,21.425297) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509963240000,21.615955) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509963300000,20.15545) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509963360000,22.090233) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509963420000,22.693682) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509963480000,21.233177) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509963540000,22.41608) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509963600000,23.358616) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509963660000,23.310886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509963720000,25.044178) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509963780000,23.583673) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509963840000,23.774332) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509963900000,25.571516) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509963960000,24.111012) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509964020000,24.852057) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509964080000,20.585348) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509964140000,25.994694) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509964200000,20.185352) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509964260000,21.918644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509964320000,20.458138) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509964380000,20.41041) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509964440000,24.546741) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509964500000,22.535849) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509964560000,21.075344) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509964620000,24.87259) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509964680000,23.613575) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509964740000,22.153069) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509964800000,25.537525) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509964860000,23.939423) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509964920000,22.680407) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509964980000,21.219902) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509965040000,25.154745) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509965100000,25.107016) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509965160000,23.096123) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509965220000,20.426498) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509965280000,24.965992) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509965340000,23.367891) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509965400000,25.101183) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509965460000,25.493332) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509965520000,24.032825) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509965580000,25.628521) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509965640000,20.369568) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509965700000,25.110552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509965760000,20.293455) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509965820000,22.447277) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509965880000,20.986773) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509965940000,22.720064) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509966000000,21.461048) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509966060000,22.064497) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509966120000,23.247402) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509966180000,21.786898) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509966240000,22.640081) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509966300000,24.235775) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509966360000,22.775272) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509966420000,22.965929) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509966480000,24.900711) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509966540000,24.852982) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509966600000,23.392475) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509966660000,21.327318) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509966720000,25.316425) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509966780000,23.919813) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509966840000,21.854656) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509966900000,20.394152) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509966960000,24.933647) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509967020000,23.537035) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509967080000,20.92149) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509967140000,25.460985) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509967200000,25.550852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509967260000,23.348099) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509967320000,21.283127) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509967380000,25.272234) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509967440000,23.207075) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509967500000,21.608974) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509967560000,20.349958) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509967620000,22.08325) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509967680000,22.273909) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509967740000,20.675808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509967800000,22.610588) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509967860000,23.351635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509967920000,23.441502) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509967980000,25.037197) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509968040000,25.227856) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509968100000,23.96884) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509968160000,25.702131) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509968220000,24.10403) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509968280000,24.845076) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509968340000,21.035425) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509968400000,25.57492) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509968460000,20.17837) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509968520000,21.911661) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509968580000,20.652647) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509968640000,22.393677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509968700000,23.989372) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509968760000,22.528866) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509968820000,21.068361) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509968880000,25.204693) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509968940000,23.606592) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509969000000,21.5957) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509969060000,25.530542) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509969120000,24.271526) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509969180000,22.673426) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509969240000,21.212921) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509969300000,24.597376) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509969360000,24.687243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509969420000,22.484673) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509969480000,20.419516) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509969540000,24.959011) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509969600000,22.948118) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509969660000,20.946854) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509969720000,25.48635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509969780000,24.025845) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509969840000,25.759136) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509969900000,20.564075) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509969960000,24.553183) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509970020000,20.286474) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509970080000,22.577892) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509970140000,20.97979) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509970200000,22.914572) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509970260000,23.10523) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509970320000,21.644726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509970380000,23.24042) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509970440000,22.787361) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509970500000,23.528408) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509970560000,24.711311) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509970620000,23.113209) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509970680000,24.055744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509970740000,25.789036) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509970800000,25.878904) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509970860000,24.280802) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509970920000,21.665257) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509970980000,20.406242) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509971040000,24.945736) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509971100000,22.742983) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509971160000,21.282478) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509971220000,25.473076) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509971280000,23.407917) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509971340000,21.809816) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509971400000,20.349312) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509971460000,20.439178) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509971520000,23.219166) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509971580000,21.621063) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509971640000,20.160559) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509971700000,24.095402) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509971760000,22.836386) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509971820000,21.238285) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509971880000,24.62274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509971940000,23.162235) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509972000000,21.90322) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509972060000,23.498915) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509972120000,24.23996) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509972180000,23.77944) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509972240000,25.512732) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509972300000,20.31767) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509972360000,24.857166) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509972420000,20.590458) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509972480000,20.781116) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509972540000,20.19046) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509972600000,21.923752) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509972660000,20.463247) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509972720000,21.204292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509972780000,23.001476) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509972840000,20.990585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509972900000,23.282003) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509972960000,25.015295) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509973020000,23.417192) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509973080000,22.158178) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509973140000,25.542633) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509973200000,24.082127) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509973260000,22.484026) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509973320000,20.620358) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509973380000,25.159853) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509973440000,23.14896) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509973500000,20.946207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509973560000,24.881233) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509973620000,24.971102) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509973680000,23.510597) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509973740000,21.307842) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509973800000,25.296951) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509973860000,24.037933) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509973920000,21.972776) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509973980000,20.374676) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509974040000,24.914171) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509974100000,22.500114) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509974160000,21.03961) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509974220000,25.44151) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509974280000,21.1748) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509974340000,23.466219) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509974400000,21.656815) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509974460000,23.25251) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509974520000,23.993557) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509974580000,22.53305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509974640000,25.273788) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509974700000,23.675688) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509974760000,23.866346) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509974820000,25.599638) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509974880000,24.340622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509974940000,24.94407) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509975000000,20.677362) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509975060000,20.216843) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509975120000,20.95789) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509975180000,22.755074) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509975240000,21.294569) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509975300000,25.834063) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509975360000,23.218517) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509975420000,21.821905) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509975480000,20.3614) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509975540000,24.296244) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509975600000,22.83574) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509975660000,20.63317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509975720000,24.017624) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509975780000,24.107492) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509975840000,22.646988) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509975900000,21.048885) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509975960000,25.185217) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509976020000,23.174324) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509976080000,21.71382) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509976140000,25.511066) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509976200000,24.25205) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509976260000,22.791546) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509976320000,20.176) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509976380000,24.5779) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509976440000,24.667767) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509976500000,20.602547) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509976560000,21.343594) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509976620000,25.745491) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509976680000,20.928396) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509976740000,22.676888) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509976800000,21.216383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509976860000,22.812078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509976920000,21.351574) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509976980000,21.743721) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509977040000,23.477013) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509977100000,21.87891) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509977160000,24.17033) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509977220000,25.903622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509977280000,24.094217) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509977340000,24.697666) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509977400000,20.430958) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509977460000,24.970453) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509977520000,23.71144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509977580000,21.508684) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509977640000,25.497791) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509977700000,24.037287) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509977760000,21.367662) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509977820000,25.76956) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509977880000,25.859428) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509977940000,23.243883) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509978000000,21.783379) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509978060000,20.386765) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509978120000,24.92626) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509978180000,22.861103) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509978240000,20.85021) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509978300000,25.453598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509978360000,23.388441) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509978420000,21.927937) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509978480000,20.467432) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509978540000,22.264616) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509978600000,24.005646) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509978660000,22.545141) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509978720000,24.278433) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509978780000,24.881882) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509978840000,24.428823) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509978900000,25.611727) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509978960000,20.352774) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509979020000,24.754673) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509979080000,20.689453) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509979140000,25.228949) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509979200000,25.419605) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509979260000,21.0153) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509979320000,21.10517) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509979380000,22.047705) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509979440000,23.780996) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509979500000,22.182894) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509979560000,22.373552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509979620000,24.308334) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509979680000,22.847828) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509979740000,21.249727) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509979800000,25.18457) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509979860000,22.56921) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509979920000,21.108706) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509979980000,24.90595) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509980040000,24.99582) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509980100000,23.535313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509980160000,21.121258) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509980220000,25.523155) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509980280000,24.06265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509980340000,22.602146) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509980400000,20.738478) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509980460000,25.140377) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509980520000,23.129484) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509980580000,21.064327) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509980640000,25.805311) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509980700000,25.757582) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509980760000,21.490873) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509980820000,21.681532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509980880000,20.221027) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509980940000,22.824167) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509981000000,23.565214) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509981060000,22.10471) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509981120000,23.287613) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509981180000,24.092552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509981240000,22.632046) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509981300000,24.36534) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509981360000,22.904835) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509981420000,25.058655) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509981480000,20.443048) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509981540000,24.982544) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509981600000,25.72359) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509981660000,21.319284) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509981720000,20.060268) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509981780000,20.250927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509981840000,21.984219) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509981900000,20.386118) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509981960000,24.321144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509982020000,22.25599) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509982080000,20.245096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509982140000,20.197367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509982200000,24.13221) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509982260000,22.873194) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509982320000,21.41269) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509982380000,25.814587) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509982440000,23.199041) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509982500000,21.940025) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509982560000,20.47952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509982620000,24.276768) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509982680000,22.816261) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509982740000,21.006859) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509982800000,24.941702) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509982860000,24.893972) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509982920000,23.433468) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509982980000,25.16676) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509983040000,21.260172) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509983100000,25.66207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509983160000,21.39536) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509983220000,22.136408) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509983280000,20.877392) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509983340000,22.473087) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509983400000,22.663746) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509983460000,21.20324) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509983520000,23.138021) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509983580000,23.090292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509983640000,23.831339) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509983700000,25.014242) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509983760000,23.553738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509983820000,24.358677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509983880000,20.091969) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509983940000,24.631462) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509984000000,24.82212) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509984060000,25.813349) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509984120000,24.352844) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509984180000,22.89234) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509984240000,20.82718) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509984300000,20.779451) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509984360000,24.970049) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509984420000,22.904892) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509984480000,21.444387) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509984540000,25.846285) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509984600000,24.587269) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509984660000,21.971724) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509984720000,20.511219) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509984780000,24.913118) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509984840000,23.04945) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509984900000,21.588945) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509984960000,21.128426) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509985020000,24.92567) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509985080000,23.465166) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509985140000,23.012108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509985200000,24.7454) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509985260000,25.348848) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509985320000,23.337955) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509985380000,25.272736) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509985440000,20.013783) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509985500000,24.41568) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509985560000,20.148973) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509985620000,20.54112) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509985680000,20.630987) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509985740000,22.226683) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509985800000,20.766178) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509985860000,21.507223) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509985920000,22.891617) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509985980000,21.293516) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509986040000,22.034561) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509986100000,23.767853) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509986160000,21.70288) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509986220000,20.104778) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509986280000,23.489235) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509986340000,22.028728) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509986400000,22.118597) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509986460000,20.117332) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509986520000,24.656826) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509986580000,22.645935) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509986640000,20.580778) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509986700000,25.184164) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509986760000,23.72366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509986820000,22.263155) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509986880000,25.64761) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509986940000,24.250998) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509987000000,22.790493) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509987060000,20.725336) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509987120000,20.815203) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509987180000,25.217102) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509987240000,23.609003) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509987300000,22.148497) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509987360000,20.687992) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509987420000,22.283688) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509987480000,23.226223) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509987540000,21.21533) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509987600000,22.948622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509987660000,23.55207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509987720000,22.293056) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509987780000,24.026348) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509987840000,25.767378) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509987900000,24.169277) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509987960000,25.902569) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509988020000,24.643553) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509988080000,25.384598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509988140000,20.980293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509988200000,24.969402) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509988260000,25.10598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509988320000,20.839272) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509988380000,25.241169) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509988440000,23.780664) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509988500000,21.36661) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509988560000,21.456476) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509988620000,25.858376) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509988680000,23.793217) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509988740000,22.332712) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509988800000,20.52331) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509988860000,24.320555) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509988920000,22.86005) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509988980000,21.399546) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509989040000,20.14053) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509989100000,23.937777) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509989160000,21.926884) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509989220000,22.01675) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509989280000,25.951593) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509989340000,25.360939) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509989400000,23.900433) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509989460000,21.284887) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509989520000,25.824383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509989580000,24.42777) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509989640000,20.161062) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509989700000,20.90211) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509989760000,24.891216) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509989820000,20.6884) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509989880000,21.429447) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509989940000,21.519314) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509990000000,23.252605) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509990060000,21.654503) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509990120000,22.046652) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509990180000,23.779943) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509990240000,22.319439) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509990300000,22.922888) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509990360000,24.051712) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509990420000,22.04082) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509990480000,22.781866) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509990540000,24.37756) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509990600000,23.118546) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509990660000,23.208412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509990720000,20.592867) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509990780000,24.994766) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509990840000,23.534262) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509990900000,21.670593) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509990960000,20.210087) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509991020000,24.611986) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509991080000,21.99644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509991140000,20.737425) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509991200000,25.27692) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509991260000,23.67882) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509991320000,21.61366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509991380000,21.153141) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509991440000,20.700083) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509991500000,24.49733) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509991560000,23.036823) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509991620000,21.576319) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509991680000,25.162262) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509991740000,23.564161) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509991800000,22.103657) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509991860000,23.836948) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509991920000,24.779484) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509991980000,23.181381) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509992040000,24.364286) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509992100000,20.655704) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509992160000,25.1952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509992220000,20.992384) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509992280000,25.53188) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509992340000,25.722538) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509992400000,21.45583) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509992460000,25.25326) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509992520000,25.994305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509992580000,21.727598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509992640000,25.716705) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509992700000,20.521643) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509992760000,22.254936) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509992820000,22.344803) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509992880000,20.884298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509992940000,24.681543) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509993000000,22.87214) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509993060000,21.411636) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509993120000,25.346478) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509993180000,23.748377) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509993240000,22.48936) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509993300000,25.873816) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509993360000,24.413311) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509993420000,22.81521) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509993480000,22.905077) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509993540000,21.847366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509993600000,25.836473) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509993660000,24.238373) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509993720000,22.173214) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509993780000,20.914198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509993840000,25.453693) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509993900000,21.049389) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509993960000,21.240047) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509994020000,25.981031) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509994080000,21.714323) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509994140000,22.317772) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509994200000,22.40764) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509994260000,23.590544) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509994320000,24.53308) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509994380000,22.934978) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509994440000,24.66827) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509994500000,23.207764) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509994560000,22.793955) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509994620000,24.38965) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509994680000,22.929146) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509994740000,23.670193) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509994800000,25.604973) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509994860000,24.00687) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509994920000,25.747902) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509994980000,21.481194) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509995040000,20.020689) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509995100000,24.624077) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509995160000,22.558918) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509995220000,20.548027) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509995280000,25.08752) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509995340000,23.086256) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509995400000,21.625751) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509995460000,20.165247) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509995520000,23.549702) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509995580000,22.959045) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509995640000,23.048914) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509995700000,21.58841) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509995760000,25.52325) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509995820000,23.92515) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509995880000,22.115746) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509995940000,20.050589) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509996000000,24.590084) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509996060000,22.991983) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509996120000,24.926764) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509996180000,25.117422) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509996240000,23.656918) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509996300000,25.252613) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509996360000,21.544031) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509996420000,20.285015) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509996480000,21.467918) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509996540000,22.07137) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509996600000,20.610863) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509996660000,21.739687) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509996720000,20.279182) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509996780000,20.882631) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509996840000,22.065536) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509996900000,20.80652) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509996960000,21.547567) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509997020000,23.143261) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509997080000,23.23313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509997140000,23.423788) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509997200000,25.358568) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509997260000,23.760468) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509997320000,22.299961) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509997380000,20.234804) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509997440000,24.425402) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509997500000,22.8273) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509997560000,20.762142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509997620000,25.301638) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509997680000,24.84858) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509997740000,24.80085) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509997800000,22.185305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509997860000,20.7248) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509997920000,25.264294) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509997980000,23.26303) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509998040000,21.802525) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509998100000,25.791634) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509998160000,23.726475) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509998220000,22.329863) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509998280000,20.869358) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509998340000,22.60265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509998400000,22.793308) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509998460000,22.745579) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509998520000,24.680359) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509998580000,25.421406) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509998640000,23.960901) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509998700000,25.556595) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509998760000,25.142786) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509998820000,23.682281) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509998880000,25.415573) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509998940000,23.817472) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509999000000,24.760008) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509999060000,25.942911) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509999120000,24.482407) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509999180000,20.636229) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509999240000,22.36952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509999300000,21.110504) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509999360000,21.301163) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509999420000,22.896858) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509999480000,21.436352) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509999540000,20.177338) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509999600000,24.112179) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509999660000,22.514078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509999720000,20.503185) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509999780000,24.550167) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509999840000,23.08966) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509999900000,23.041931) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1509999960000,21.581427) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510000020000,24.965881) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510000080000,23.706867) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510000140000,22.108765) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510000200000,20.043608) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510000260000,24.583103) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510000320000,22.773699) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510000380000,20.570946) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510000440000,25.11044) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510000500000,23.649937) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510000560000,25.584717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510000620000,21.738539) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510000680000,25.727646) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510000740000,21.460938) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510000800000,22.201984) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510000860000,25.999414) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510000920000,21.732706) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510000980000,21.923365) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510001040000,20.46286) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510001100000,22.260044) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510001160000,20.79954) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510001220000,21.540585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510001280000,22.72349) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510001340000,22.67576) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510001400000,23.618296) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510001460000,25.351587) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510001520000,23.891083) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510001580000,22.29298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510001640000,25.878925) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510001700000,24.418419) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510001760000,22.957914) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510001820000,20.755161) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510001880000,20.302101) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510001940000,24.29121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510002000000,22.226051) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510002060000,22.178322) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510002120000,20.717817) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510002180000,25.458801) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510002240000,22.843258) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510002300000,21.245155) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510002360000,25.78465) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510002420000,23.920982) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510002480000,22.460478) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510002540000,20.862375) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510002600000,24.24683) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510002660000,22.987816) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510002720000,23.077682) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510002780000,24.673378) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510002840000,25.414425) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510002900000,23.403532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510002960000,24.532356) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510003020000,25.135805) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510003080000,23.6753) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510003140000,25.408592) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510003200000,25.80074) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510003260000,24.202637) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510003320000,25.935928) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510003380000,24.475426) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510003440000,20.766844) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510003500000,22.564028) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510003560000,20.553135) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510003620000,21.294182) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510003680000,23.027473) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510003740000,21.63086) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510003800000,20.170355) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510003860000,23.55481) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510003920000,22.094305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510003980000,21.503649) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510004040000,25.438492) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510004100000,23.977987) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510004160000,23.517467) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510004220000,21.314713) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510004280000,20.055698) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510004340000,24.595192) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510004400000,23.134687) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510004460000,20.931934) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510004520000,25.12253) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510004580000,23.662025) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510004640000,21.596869) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510004700000,25.998766) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510004760000,24.739752) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510004820000,22.124207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510004880000,22.214073) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510004940000,20.615973) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510005000000,22.349264) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510005060000,22.485842) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510005120000,20.474949) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510005180000,22.070644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510005240000,22.811691) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510005300000,21.552675) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510005360000,23.285967) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510005420000,21.687864) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510005480000,21.878523) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510005540000,23.813305) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510005600000,23.903172) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510005660000,24.506622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510005720000,20.239912) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510005780000,24.22902) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510005840000,25.171555) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510005900000,20.76725) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510005960000,25.306746) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510006020000,23.846241) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510006080000,22.238142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510006140000,20.64004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510006200000,25.179535) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510006260000,23.114378) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510006320000,23.204247) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510006380000,21.807632) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510006440000,25.19209) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510006500000,23.731583) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510006560000,22.271078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510006620000,20.874466) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510006680000,24.809309) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510006740000,22.798416) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510006800000,21.337912) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510006860000,25.336647) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510006920000,23.876143) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510006980000,23.96601) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510007040000,21.350464) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510007100000,25.752361) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510007160000,23.68739) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510007220000,25.420681) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510007280000,20.161728) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510007340000,24.563625) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510007400000,25.948019) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510007460000,20.689066) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510007520000,25.228561) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510007580000,20.824255) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510007640000,25.565239) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510007700000,21.30627) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510007760000,23.039562) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510007820000,21.441462) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510007880000,22.182507) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510007940000,24.117289) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510008000000,22.106396) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510008060000,22.709845) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510008120000,24.443136) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510008180000,23.990078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510008240000,22.529573) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510008300000,20.326818) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510008360000,24.315926) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510008420000,24.405794) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510008480000,22.542126) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510008540000,20.944023) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510008600000,25.483519) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510008660000,22.867973) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510008720000,21.60896) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510008780000,20.010857) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510008840000,24.550352) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510008900000,22.485195) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510008960000,20.67579) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510009020000,25.07769) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510009080000,23.012531) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510009140000,23.1024) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510009200000,21.641895) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510009260000,22.633121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510009320000,22.82378) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510009380000,21.363276) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510009440000,23.096567) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510009500000,23.901506) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510009560000,22.441002) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510009620000,23.623905) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510009680000,24.364952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510009740000,22.968338) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510009800000,24.70163) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510009860000,24.791498) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510009920000,24.982157) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510009980000,20.577852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510010040000,25.318836) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510010100000,20.059881) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510010160000,21.793173) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510010220000,20.195072) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510010280000,21.393177) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510010340000,23.126469) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510010400000,21.665964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510010460000,20.067862) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510010520000,24.204193) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510010580000,23.743673) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510010640000,22.283169) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510010700000,20.080414) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510010760000,24.61991) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510010820000,23.360893) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510010880000,20.74535) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510010940000,25.147247) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510011000000,23.686743) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510011060000,22.427727) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510011120000,20.36257) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510011180000,24.76447) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510011240000,24.303947) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510011300000,22.23879) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510011360000,20.173819) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510011420000,24.575716) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510011480000,20.309008) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510011540000,20.499666) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510011600000,25.24065) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510011660000,20.836346) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510011720000,21.577393) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510011780000,20.116886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510011840000,21.50128) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510011900000,22.104729) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510011960000,22.194597) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510012020000,23.927889) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510012080000,22.467384) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510012140000,23.272324) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510012200000,24.455227) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510012260000,22.994722) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510012320000,23.735767) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510012380000,20.33891) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510012440000,24.878403) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510012500000,25.069061) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510012560000,20.802353) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510012620000,25.405743) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510012680000,25.49561) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510012740000,23.430452) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510012800000,21.41956) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510012860000,25.821457) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510012920000,23.95779) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510012980000,22.497284) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510013040000,21.03678) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510013100000,25.438679) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510013160000,23.024622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510013220000,21.564117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510013280000,20.103613) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510013340000,23.900858) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510013400000,23.990726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510013460000,21.375366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510013520000,25.310207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510013580000,23.712107) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510013640000,22.251602) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510013700000,24.186382) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510013760000,24.37704) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510013820000,22.77894) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510013880000,24.512232) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510013940000,25.454767) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510014000000,23.994263) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510014060000,25.589956) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510014120000,21.330988) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510014180000,25.870483) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510014240000,21.805264) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510014300000,20.207163) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510014360000,20.948208) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510014420000,22.131113) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510014480000,21.678053) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510014540000,22.281502) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510014600000,24.014793) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510014660000,22.554289) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510014720000,22.946438) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510014780000,24.542133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510014840000,24.632) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510014900000,23.171495) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510014960000,21.106339) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510015020000,25.709724) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510015080000,23.698833) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510015140000,21.633675) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510015200000,20.17317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510015260000,24.776558) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510015320000,23.316053) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510015380000,20.700508) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510015440000,25.240004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510015500000,25.192274) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510015560000,22.52265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510015620000,21.062143) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510015680000,25.05125) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510015740000,22.848497) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510015800000,21.589481) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510015860000,20.128977) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510015920000,21.862268) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510015980000,22.465717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510016040000,20.656315) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510016100000,22.389606) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510016160000,23.130653) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510016220000,23.082924) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510016280000,24.816216) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510016340000,25.208363) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510016400000,23.747858) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510016460000,25.343552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510016520000,23.883049) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510016580000,20.526848) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510016640000,21.709751) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510016700000,20.11165) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510016760000,20.852695) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510016820000,22.787477) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510016880000,21.326973) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510016940000,21.279243) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510017000000,24.663698) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510017060000,23.203194) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510017120000,21.944178) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510017180000,25.741423) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510017240000,24.280918) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510017300000,22.270027) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510017360000,20.406359) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510017420000,24.808256) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510017480000,23.347752) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510017540000,21.887247) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510017600000,24.667234) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510017660000,24.619505) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510017720000,23.159) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510017780000,21.093842) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510017840000,25.633339) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510017900000,24.236725) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510017960000,21.62118) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510018020000,20.160675) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510018080000,24.70017) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510018140000,20.497355) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510018200000,21.238401) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510018260000,25.227509) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510018320000,20.9608) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510018380000,23.114622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510018440000,21.855606) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510018500000,23.588898) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510018560000,23.779556) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510018620000,22.181454) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510018680000,24.922192) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510018740000,23.461687) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510018800000,24.202732) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510018860000,25.798428) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510018920000,23.989025) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510018980000,24.730072) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510019040000,20.463364) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510019100000,20.415634) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510019160000,24.955128) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510019220000,22.541073) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510019280000,21.080568) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510019340000,25.482466) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510019400000,23.417309) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510019460000,22.158293) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510019520000,20.147402) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510019580000,23.944647) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510019640000,22.484142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510019700000,20.41917) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510019760000,20.509037) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510019820000,24.306282) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510019880000,22.295391) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510019940000,20.834885) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510020000000,24.971218) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510020060000,23.373116) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510020120000,21.912611) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510020180000,25.297066) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510020240000,24.03805) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510020300000,22.439949) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510020360000,24.17324) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510020420000,24.914288) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510020480000,24.453766) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510020540000,20.25095) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510020600000,20.991997) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510020660000,25.531492) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510020720000,21.264784) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510020780000,20.674128) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510020840000,20.864786) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510020900000,22.598078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510020960000,21.137573) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510021020000,21.942513) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510021080000,23.675804) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510021140000,21.664911) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510021200000,23.95633) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510021260000,25.552025) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510021320000,24.293009) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510021380000,22.832504) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510021440000,20.216959) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510021500000,24.618856) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510021560000,23.35984) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510021620000,21.294683) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510021680000,25.834179) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510021740000,24.236076) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510021800000,21.016066) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510021860000,25.555561) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510021920000,25.645428) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510021980000,24.047325) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510022040000,21.982168) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510022100000,20.172766) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510022160000,24.712261) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510022220000,22.509506) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510022280000,21.049002) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510022340000,25.789986) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510022400000,23.17444) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510022460000,21.57634) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510022520000,20.115835) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510022580000,22.050615) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510022640000,24.342033) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510022700000,22.743933) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510022760000,23.926836) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510022820000,24.667883) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510022880000,24.214823) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510022940000,25.810518) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510023000000,24.350014) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510023060000,24.540672) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510023120000,20.475452) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510023180000,24.87735) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510023240000,25.618397) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510023300000,21.351688) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510023360000,20.891169) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510023420000,21.696108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510023480000,23.4294) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510023540000,21.968895) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510023600000,20.508389) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510023660000,24.507124) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510023720000,22.496231) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510023780000,21.035727) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510023840000,24.97057) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510023900000,22.768) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510023960000,21.307495) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510024020000,24.691952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510024080000,24.781818) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510024140000,23.183716) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510024200000,21.924702) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510024260000,25.859543) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510024320000,23.848652) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510024380000,22.25055) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510024440000,20.38688) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510024500000,24.926376) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510024560000,23.465872) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510024620000,25.061565) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510024680000,25.453714) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510024740000,25.543583) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510024800000,21.276873) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510024860000,21.880323) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510024920000,20.419819) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510024980000,22.610168) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510025040000,23.351213) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510025100000,21.753113) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510025160000,23.486404) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510025220000,22.227388) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510025280000,22.418047) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510025340000,24.01374) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510025400000,22.553238) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510025460000,24.844654) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510025520000,20.779436) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510025580000,25.181335) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510025640000,25.371994) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510025700000,21.105286) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510025760000,25.84627) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510025820000,24.248167) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510025880000,22.18301) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510025940000,20.172117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510026000000,24.107145) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510026060000,21.90439) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510026120000,20.443886) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510026180000,20.533754) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510026240000,23.91821) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510026300000,22.521597) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510026360000,21.061092) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510026420000,25.600586) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510026480000,23.535429) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510026540000,22.138817) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510026600000,20.127924) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510026660000,24.062767) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510026720000,22.602262) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510026780000,21.20565) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510026840000,22.938942) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510026900000,24.679972) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510026960000,23.219467) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510027020000,24.815163) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510027080000,20.563654) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510027140000,25.10315) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510027200000,20.286053) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510027260000,20.889503) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510027320000,25.630487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510027380000,21.36378) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510027440000,25.903275) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510027500000,20.506723) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510027560000,21.891117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510027620000,21.980984) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510027680000,22.72203) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510027740000,24.317726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510027800000,22.85722) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510027860000,23.249367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510027920000,24.98266) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510027980000,23.384558) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510028040000,21.924053) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510028100000,25.254429) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510028160000,23.243536) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510028220000,21.645435) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510028280000,25.580276) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510028340000,25.670145) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510028400000,24.411129) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510028460000,22.813026) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510028520000,20.197483) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510028580000,24.736977) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510028640000,23.477962) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510028700000,21.275208) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510028760000,25.814703) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510028820000,23.80381) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510028880000,21.940142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510028940000,20.342041) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510029000000,20.431908) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510029060000,22.1652) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510029120000,22.355858) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510029180000,21.765202) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510029240000,23.498493) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510029300000,24.23954) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510029360000,22.779036) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510029420000,24.57622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510029480000,24.766878) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510029540000,23.306374) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510029600000,25.039665) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510029660000,23.643053) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510029720000,25.934471) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510029780000,21.117374) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510029840000,25.65687) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510029900000,20.260319) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510029960000,22.1951) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510030020000,20.734596) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510030080000,20.925253) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510030140000,22.520948) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510030200000,20.455976) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510030260000,24.995472) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510030320000,22.930313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510030380000,21.332212) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510030440000,20.871693) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510030500000,25.008024) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510030560000,23.54752) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510030620000,21.949417) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510030680000,20.488913) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510030740000,24.074856) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510030800000,22.614353) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510030860000,21.01625) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510030920000,24.951094) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510030980000,23.692078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510031040000,21.681185) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510031100000,25.478432) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510031160000,25.568298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510031220000,24.107794) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510031280000,20.848532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510031340000,21.45198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510031400000,25.441088) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510031460000,21.17438) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510031520000,22.116915) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510031580000,20.518814) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510031640000,22.252106) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510031700000,22.442764) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510031760000,21.183748) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510031820000,22.779444) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510031880000,22.86931) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510031940000,23.610355) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510032000000,24.79326) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510032060000,23.396648) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510032120000,24.137693) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510032180000,25.870987) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510032240000,24.41048) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510032300000,22.207912) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510032360000,25.592367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510032420000,24.131863) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510032480000,22.671356) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510032540000,20.670092) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510032600000,20.75996) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510032660000,24.749067) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510032720000,22.68391) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510032780000,21.085808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510032840000,25.826794) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510032900000,24.366287) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510032960000,21.750744) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510033020000,20.152641) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510033080000,24.893625) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510033140000,22.828468) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510033200000,21.367964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510033260000,21.320234) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510033320000,24.704689) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510033380000,23.356323) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510033440000,21.895817) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510033500000,23.491512) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510033560000,24.23256) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510033620000,22.423155) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510033680000,24.156446) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510033740000,24.759895) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510033800000,23.29939) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510033860000,25.234173) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510033920000,25.424831) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510033980000,25.377102) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510034040000,21.110394) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510034100000,25.649889) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510034160000,20.592424) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510034220000,22.188118) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510034280000,20.177227) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510034340000,20.918272) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510034400000,22.047096) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510034460000,20.448994) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510034520000,24.988491) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510034580000,22.372944) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510034640000,21.11393) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510034700000,21.0662) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510034760000,25.001041) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510034820000,23.540539) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510034880000,21.529646) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510034940000,25.52838) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510035000000,24.067875) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510035060000,22.60737) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510035120000,21.146866) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510035180000,25.145601) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510035240000,23.134708) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510035300000,21.674204) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510035360000,25.609047) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510035420000,25.561317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510035480000,25.108257) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510035540000,22.492712) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510035600000,21.032207) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510035660000,25.434107) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510035720000,21.368887) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510035780000,22.109934) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510035840000,20.099041) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510035900000,21.694736) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510035960000,22.637272) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510036020000,21.176765) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510036080000,22.910057) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510036140000,22.862328) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510036200000,23.052986) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510036260000,24.987768) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510036320000,23.527264) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510036380000,24.130713) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510036440000,25.864004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510036500000,23.248644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510036560000,23.98969) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510036620000,25.585384) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510036680000,24.124882) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510036740000,22.865864) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510036800000,20.25032) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510036860000,20.20259) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510036920000,24.742086) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510036980000,22.676928) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510037040000,21.417913) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510037100000,25.81981) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510037160000,23.204266) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510037220000,21.743761) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510037280000,20.484745) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510037340000,24.886644) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510037400000,22.821487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510037460000,20.810595) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510037520000,20.900461) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510037580000,25.705154) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510037640000,24.244648) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510037700000,22.784143) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510037760000,20.168598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510037820000,24.771986) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510037880000,23.311481) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510037940000,25.044773) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510038000000,25.78582) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510038060000,24.389206) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510038120000,25.572111) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510038180000,20.313156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510038240000,20.403025) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510038300000,21.998718) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510038360000,20.739704) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510038420000,20.930363) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510038480000,22.663654) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510038540000,21.065552) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510038600000,21.202131) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510038660000,22.935423) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510038720000,20.92453) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510038780000,21.527979) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510038840000,23.46276) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510038900000,22.002254) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510038960000,22.092123) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510039020000,25.889368) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510039080000,23.878477) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510039140000,22.619461) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510039200000,20.554302) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510039260000,24.956202) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510039320000,23.495697) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510039380000,21.08164) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510039440000,25.621136) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510039500000,24.023035) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510039560000,22.56253) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510039620000,21.504818) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510039680000,21.044298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510039740000,25.446198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510039800000,23.381039) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510039860000,21.920534) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510039920000,20.661518) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510039980000,22.257214) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510040040000,22.447872) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510040100000,20.987368) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510040160000,22.922148) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510040220000,23.525597) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510040280000,22.065092) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510040340000,23.247997) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510040400000,25.539415) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510040460000,24.142803) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510040520000,25.876095) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510040580000,24.415588) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510040640000,24.606247) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510040700000,25.597475) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510040760000,24.13697) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510040820000,24.878017) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510040880000,20.61131) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510040940000,25.214695) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510041000000,25.405354) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510041060000,21.138645) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510041120000,21.228514) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510041180000,25.630413) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510041240000,23.766743) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510041300000,21.755852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510041360000,20.295345) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510041420000,24.092592) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510041480000,22.833576) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510041540000,21.373072) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510041600000,24.757526) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510041660000,23.159426) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510041720000,22.706366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510041780000,22.796234) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510041840000,20.731077) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510041900000,25.132975) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510041960000,23.122082) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510042020000,21.258413) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510042080000,25.797909) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510042140000,24.199808) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510042200000,25.9331) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510042260000,20.325247) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510042320000,24.864742) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510042380000,20.460438) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510042440000,21.201483) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510042500000,21.291351) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510042560000,22.675743) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510042620000,23.279194) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510042680000,21.818687) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510042740000,23.55198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510042800000,21.487007) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510042860000,22.090458) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510042920000,23.273361) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510042980000,21.812857) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510043040000,22.755392) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510043100000,24.351086) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510043160000,22.890581) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510043220000,24.631613) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510043280000,20.364904) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510043340000,24.968292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510043400000,23.507786) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510043460000,21.442629) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510043520000,25.431736) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510043580000,24.035126) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510043640000,21.969967) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510043700000,20.509462) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510043760000,25.048958) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510043820000,24.458302) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510043880000,21.842756) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510043940000,21.932625) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510044000000,20.47212) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510044060000,24.269365) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510044120000,23.01035) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510044180000,20.999456) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510044240000,24.9343) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510044300000,23.336199) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510044360000,22.077183) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510044420000,23.810474) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510044480000,24.001133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510044540000,22.40303) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510044600000,24.337812) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510044660000,20.62923) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510044720000,25.168726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510044780000,20.764421) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510044840000,20.955078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510044900000,24.890106) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510044960000,20.623398) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510045020000,25.025297) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510045080000,25.766342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510045140000,21.150736) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510045200000,25.690231) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510045260000,20.29368) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510045320000,22.026972) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510045380000,22.11684) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510045440000,22.508987) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510045500000,24.104683) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510045560000,22.644176) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510045620000,21.183672) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510045680000,25.320004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510045740000,23.721903) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510045800000,21.71101) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510045860000,25.645853) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510045920000,25.192795) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510045980000,23.594692) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510046040000,23.684559) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510046100000,21.069016) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510046160000,25.60851) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510046220000,24.211897) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510046280000,22.14674) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510046340000,20.686235) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510046400000,24.675343) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510046460000,22.674078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510046520000,21.213573) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510046580000,25.753069) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510046640000,21.48636) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510046700000,22.291298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510046760000,21.830778) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510046820000,23.56407) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510046880000,24.305117) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510046940000,22.707014) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510047000000,23.835838) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510047060000,24.026497) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510047120000,22.565992) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510047180000,24.161688) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510047240000,22.902672) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510047300000,23.643719) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510047360000,24.826622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510047420000,23.22852) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510047480000,25.51994) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510047540000,21.45472) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510047600000,25.994215) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510047660000,24.396112) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510047720000,21.780567) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510047780000,20.521553) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510047840000,25.061047) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510047900000,22.858294) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510047960000,21.397789) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510048020000,20.394342) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510048080000,24.329185) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510048140000,22.731083) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510048200000,22.82095) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510048260000,21.360445) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510048320000,24.94639) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510048380000,23.348288) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510048440000,21.887783) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510048500000,25.822626) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510048560000,24.56361) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510048620000,22.965508) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510048680000,20.349964) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510048740000,24.889458) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510048800000,23.630444) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510048860000,25.22614) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510048920000,21.517557) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510048980000,25.506664) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510049040000,21.239956) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510049100000,21.238937) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510049160000,25.778433) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510049220000,21.511724) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510049280000,21.702383) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510049340000,20.30577) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510049400000,22.039062) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510049460000,20.578558) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510049520000,21.319603) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510049580000,23.116787) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510049640000,22.656267) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510049700000,23.397314) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510049760000,25.130606) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510049820000,23.532503) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510049880000,22.273487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510049940000,25.657944) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510050000000,24.197437) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510050060000,22.599337) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510050120000,22.436934) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510050180000,20.976429) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510050240000,24.965536) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510050300000,22.762781) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510050360000,22.85265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510050420000,21.593634) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510050480000,20.13313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510050540000,23.930374) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510050600000,21.919481) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510050660000,20.660465) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510050720000,24.595308) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510050780000,22.997208) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510050840000,21.536703) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510050900000,25.122646) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510050960000,23.662142) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510051020000,23.614412) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510051080000,25.347704) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510051140000,20.08875) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510051200000,23.47339) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510051260000,25.069084) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510051320000,25.810131) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510051380000,24.349627) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510051440000,20.284407) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510051500000,24.686306) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510051560000,24.876965) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510051620000,20.610256) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510051680000,25.35124) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510051740000,21.505062) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510051800000,23.238354) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510051860000,21.22746) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510051920000,21.968508) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510051980000,23.76569) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510052040000,22.305187) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510052100000,20.84468) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510052160000,24.229137) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510052220000,23.638481) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510052280000,22.177977) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510052340000,20.11282) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510052400000,24.652313) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510052460000,24.604584) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510052520000,22.190529) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510052580000,20.730024) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510052640000,25.26952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510052700000,23.671417) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510052760000,21.807749) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510052820000,25.796856) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510052880000,24.336351) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510052940000,22.133598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510053000000,20.874582) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510053060000,25.414078) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510053120000,22.798532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510053180000,22.750803) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510053240000,21.290298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510053300000,22.419123) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510053360000,23.160168) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510053420000,21.562067) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510053480000,22.74497) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510053540000,23.687506) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510053600000,22.227001) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510053660000,23.822697) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510053720000,22.362192) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510053780000,22.75434) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510053840000,24.48763) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510053900000,24.439901) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510053960000,25.180946) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510054020000,20.91424) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510054080000,25.104836) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510054140000,25.708286) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510054200000,21.441576) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510054260000,25.981071) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510054320000,25.528013) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510054380000,23.325258) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510054440000,21.314367) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510054500000,25.853863) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510054560000,23.990194) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510054620000,23.942465) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510054680000,22.48196) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510054740000,25.866413) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510054800000,24.40591) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510054860000,23.009296) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510054920000,21.548792) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510054980000,25.483635) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510055040000,23.472742) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510055100000,22.07613) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510055160000,20.010973) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510055220000,24.550468) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510055280000,24.640335) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510055340000,20.23603) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510055400000,25.82222) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510055460000,24.361717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510055520000,20.095009) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510055580000,20.698458) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510055640000,25.439442) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510055700000,20.622345) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510055760000,21.363392) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510055820000,25.76529) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510055880000,21.700071) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510055940000,20.239567) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510056000000,21.980597) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510056060000,23.576292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510056120000,22.115788) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510056180000,23.058323) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510056240000,24.791615) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510056300000,23.193512) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510056360000,23.38417) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510056420000,20.124908) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510056480000,24.664404) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510056540000,23.066301) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510056600000,21.001144) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510056660000,25.191742) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510056720000,25.281609) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510056780000,23.078856) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510056840000,21.61835) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510056900000,20.157845) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510056960000,23.74379) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510057020000,22.145687) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510057080000,20.685183) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510057140000,25.224678) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510057200000,23.36101) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510057260000,21.762909) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510057320000,25.752016) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510057380000,23.68686) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510057440000,23.776726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510057500000,21.574156) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510057560000,23.30745) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510057620000,23.498108) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510057680000,22.037601) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510057740000,23.834785) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510057800000,24.575832) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510057860000,23.115328) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510057920000,24.298231) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510057980000,25.10317) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510058040000,23.642666) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510058100000,25.375957) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510058160000,25.465824) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510058220000,20.069273) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510058280000,21.453667) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510058340000,25.993162) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510058400000,20.73421) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510058460000,22.329903) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510058520000,21.876844) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510058580000,22.067503) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510058640000,23.800795) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510058700000,22.202692) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510058760000,20.943676) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510058820000,24.878521) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510058880000,24.418) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510058940000,22.819899) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510059000000,20.75474) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510059060000,25.495726) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510059120000,24.035221) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510059180000,22.437119) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510059240000,25.821573) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510059300000,24.562557) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510059360000,23.102053) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510059420000,20.8993) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510059480000,25.438793) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510059540000,24.978273) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510059600000,22.30865) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510059660000,20.710546) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510059720000,25.250042) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510059780000,20.983334) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510059840000,21.375483) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510059900000,25.77738) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510059960000,21.510672) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510060020000,22.251719) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510060080000,20.992702) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510060140000,22.588398) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510060200000,22.779057) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510060260000,22.868923) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510060320000,24.602215) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510060380000,23.205603) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510060440000,23.946648) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510060500000,25.129553) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510060560000,23.669048) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510060620000,25.279943) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510060680000,21.013235) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510060740000,25.55273) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510060800000,25.74339) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510060860000,21.540573) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510060920000,20.080067) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510060980000,20.169935) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510061040000,24.104778) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510061100000,22.506676) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510061160000,20.697273) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510061220000,24.632114) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510061280000,23.17161) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510061340000,21.57351) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510061400000,20.314493) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510061460000,23.698948) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510061520000,22.238443) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510061580000,20.640343) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510061640000,23.970716) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510061700000,24.060585) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510061760000,22.049692) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510061820000,25.846937) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510061880000,24.386433) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510061940000,23.127419) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510062000000,24.86071) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510062060000,25.464157) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510062120000,23.453266) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510062180000,25.388046) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510062240000,20.129093) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510062300000,24.53099) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510062360000,20.264282) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510062420000,22.005314) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510062480000,20.746298) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510062540000,22.341993) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510062600000,20.881489) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510062660000,21.622534) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510062720000,23.812885) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510062780000,22.214783) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510062840000,22.95583) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510062900000,24.689121) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510062960000,23.430105) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510063020000,21.832003) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510063080000,25.216457) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510063140000,25.306326) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510063200000,23.845821) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510063260000,21.844555) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510063320000,20.38405) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510063380000,24.373158) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510063440000,22.308) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510063500000,20.911388) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510063560000,25.450884) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510063620000,23.99038) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510063680000,21.374834) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510063740000,25.172264) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510063800000,25.262133) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510063860000,23.196976) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510063920000,21.736471) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510063980000,20.138369) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510064040000,23.724312) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510064100000,22.263807) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510064160000,20.803303) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510064220000,22.398998) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510064280000,23.341534) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510064340000,21.33064) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510064400000,23.063932) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510064460000,23.667381) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510064520000,23.75725) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510064580000,25.69203) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510064640000,25.882689) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510064700000,24.284588) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510064760000,20.01788) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510064820000,25.56482) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510064880000,20.305866) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510064940000,21.901562) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510065000000,25.890669) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510065060000,20.833204) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510065120000,22.566496) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510065180000,20.968393) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510065240000,21.058262) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510065300000,24.442717) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510065360000,23.1837) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510065420000,21.585598) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510065480000,25.520443) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510065540000,24.059937) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510065600000,22.250534) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510065660000,20.04778) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510065720000,24.587275) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510065780000,23.12677) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510065840000,21.061798) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510065900000,24.859043) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510065960000,24.398523) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510066020000,22.938019) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510066080000,20.87286) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510066140000,25.476248) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510066200000,24.015743) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510066260000,21.400198) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510066320000,25.939693) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510066380000,24.543081) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510066440000,20.276373) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510066500000,21.01742) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510066560000,25.006527) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510066620000,20.80371) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510066680000,23.095129) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510066740000,21.634624) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510066800000,23.367916) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510066860000,21.769814) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510066920000,22.07261) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510066980000,23.805902) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510067040000,22.345398) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510067100000,22.948847) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510067160000,24.883629) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510067220000,22.872736) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510067280000,23.613781) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510067340000,25.209476) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510067400000,25.299343) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510067460000,24.040329) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510067520000,21.424784) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510067580000,25.826681) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510067640000,24.366177) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510067700000,22.502508) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510067760000,21.042004) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510067820000,25.443901) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510067880000,22.828358) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510067940000,20.763386) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510068000000,25.30288) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510068060000,25.25515) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510068120000,23.189993) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510068180000,21.1791) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510068240000,25.920086) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510068300000,23.71733) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510068360000,22.256826) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510068420000,20.796322) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510068480000,24.382265) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510068540000,22.784164) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510068600000,21.32366) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510068660000,23.056952) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510068720000,23.999487) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510068780000,23.951757) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510068840000,25.13466) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510068900000,25.875708) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510068960000,24.415203) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510069020000,21.018343) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510069080000,25.557838) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510069140000,25.748497) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510069200000,21.481789) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510069260000,20.085176) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510069320000,20.826221) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510069380000,22.559513) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510069440000,20.548622) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510069500000,22.702442) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510069560000,24.637224) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510069620000,23.17672) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510069680000,21.716215) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510069740000,25.51346) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510069800000,23.704056) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510069860000,22.243551) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510069920000,20.178394) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510069980000,24.580292) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510070040000,22.51532) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510070100000,25.899776) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510070160000,24.43927) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510070220000,24.39154) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510070280000,22.931036) +insert into root.ln.wf01.wt01(timestamp,temperature) values(1510070340000,21.067368) +create timeseries root.ln.wf02.wt02.hardware with datatype=TEXT,encoding=PLAIN +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509465600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509465660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509465720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509465780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509465840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509465900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509465960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509466020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509466080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509466140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509466200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509466260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509466320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509466380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509466440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509466500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509466560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509466620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509466680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509466740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509466800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509466860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509466920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509466980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509467040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509467100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509467160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509467220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509467280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509467340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509467400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509467460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509467520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509467580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509467640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509467700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509467760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509467820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509467880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509467940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509468000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509468060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509468120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509468180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509468240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509468300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509468360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509468420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509468480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509468540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509468600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509468660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509468720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509468780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509468840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509468900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509468960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509469020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509469080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509469140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509469200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509469260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509469320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509469380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509469440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509469500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509469560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509469620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509469680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509469740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509469800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509469860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509469920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509469980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509470040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509470100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509470160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509470220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509470280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509470340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509470400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509470460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509470520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509470580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509470640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509470700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509470760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509470820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509470880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509470940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509471000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509471060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509471120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509471180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509471240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509471300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509471360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509471420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509471480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509471540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509471600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509471660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509471720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509471780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509471840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509471900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509471960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509472020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509472080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509472140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509472200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509472260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509472320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509472380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509472440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509472500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509472560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509472620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509472680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509472740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509472800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509472860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509472920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509472980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509473040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509473100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509473160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509473220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509473280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509473340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509473400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509473460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509473520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509473580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509473640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509473700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509473760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509473820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509473880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509473940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509474000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509474060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509474120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509474180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509474240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509474300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509474360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509474420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509474480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509474540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509474600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509474660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509474720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509474780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509474840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509474900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509474960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509475020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509475080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509475140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509475200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509475260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509475320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509475380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509475440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509475500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509475560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509475620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509475680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509475740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509475800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509475860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509475920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509475980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509476040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509476100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509476160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509476220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509476280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509476340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509476400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509476460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509476520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509476580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509476640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509476700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509476760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509476820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509476880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509476940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509477000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509477060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509477120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509477180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509477240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509477300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509477360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509477420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509477480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509477540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509477600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509477660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509477720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509477780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509477840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509477900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509477960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509478020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509478080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509478140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509478200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509478260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509478320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509478380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509478440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509478500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509478560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509478620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509478680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509478740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509478800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509478860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509478920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509478980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509479040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509479100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509479160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509479220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509479280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509479340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509479400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509479460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509479520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509479580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509479640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509479700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509479760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509479820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509479880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509479940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509480000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509480060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509480120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509480180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509480240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509480300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509480360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509480420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509480480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509480540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509480600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509480660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509480720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509480780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509480840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509480900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509480960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509481020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509481080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509481140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509481200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509481260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509481320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509481380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509481440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509481500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509481560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509481620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509481680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509481740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509481800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509481860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509481920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509481980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509482040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509482100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509482160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509482220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509482280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509482340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509482400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509482460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509482520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509482580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509482640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509482700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509482760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509482820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509482880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509482940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509483000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509483060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509483120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509483180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509483240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509483300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509483360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509483420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509483480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509483540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509483600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509483660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509483720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509483780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509483840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509483900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509483960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509484020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509484080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509484140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509484200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509484260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509484320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509484380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509484440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509484500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509484560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509484620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509484680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509484740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509484800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509484860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509484920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509484980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509485040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509485100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509485160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509485220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509485280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509485340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509485400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509485460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509485520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509485580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509485640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509485700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509485760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509485820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509485880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509485940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509486000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509486060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509486120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509486180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509486240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509486300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509486360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509486420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509486480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509486540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509486600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509486660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509486720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509486780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509486840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509486900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509486960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509487020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509487080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509487140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509487200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509487260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509487320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509487380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509487440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509487500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509487560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509487620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509487680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509487740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509487800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509487860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509487920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509487980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509488040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509488100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509488160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509488220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509488280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509488340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509488400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509488460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509488520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509488580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509488640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509488700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509488760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509488820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509488880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509488940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509489000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509489060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509489120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509489180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509489240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509489300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509489360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509489420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509489480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509489540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509489600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509489660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509489720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509489780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509489840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509489900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509489960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509490020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509490080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509490140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509490200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509490260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509490320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509490380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509490440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509490500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509490560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509490620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509490680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509490740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509490800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509490860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509490920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509490980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509491040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509491100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509491160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509491220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509491280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509491340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509491400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509491460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509491520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509491580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509491640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509491700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509491760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509491820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509491880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509491940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509492000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509492060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509492120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509492180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509492240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509492300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509492360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509492420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509492480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509492540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509492600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509492660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509492720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509492780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509492840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509492900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509492960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509493020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509493080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509493140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509493200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509493260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509493320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509493380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509493440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509493500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509493560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509493620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509493680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509493740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509493800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509493860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509493920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509493980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509494040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509494100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509494160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509494220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509494280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509494340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509494400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509494460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509494520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509494580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509494640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509494700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509494760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509494820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509494880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509494940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509495000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509495060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509495120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509495180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509495240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509495300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509495360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509495420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509495480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509495540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509495600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509495660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509495720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509495780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509495840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509495900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509495960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509496020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509496080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509496140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509496200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509496260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509496320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509496380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509496440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509496500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509496560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509496620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509496680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509496740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509496800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509496860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509496920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509496980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509497040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509497100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509497160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509497220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509497280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509497340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509497400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509497460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509497520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509497580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509497640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509497700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509497760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509497820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509497880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509497940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509498000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509498060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509498120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509498180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509498240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509498300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509498360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509498420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509498480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509498540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509498600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509498660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509498720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509498780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509498840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509498900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509498960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509499020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509499080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509499140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509499200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509499260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509499320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509499380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509499440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509499500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509499560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509499620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509499680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509499740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509499800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509499860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509499920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509499980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509500040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509500100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509500160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509500220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509500280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509500340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509500400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509500460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509500520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509500580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509500640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509500700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509500760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509500820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509500880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509500940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509501000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509501060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509501120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509501180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509501240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509501300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509501360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509501420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509501480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509501540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509501600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509501660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509501720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509501780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509501840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509501900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509501960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509502020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509502080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509502140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509502200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509502260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509502320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509502380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509502440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509502500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509502560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509502620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509502680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509502740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509502800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509502860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509502920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509502980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509503040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509503100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509503160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509503220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509503280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509503340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509503400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509503460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509503520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509503580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509503640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509503700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509503760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509503820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509503880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509503940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509504000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509504060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509504120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509504180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509504240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509504300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509504360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509504420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509504480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509504540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509504600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509504660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509504720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509504780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509504840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509504900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509504960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509505020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509505080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509505140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509505200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509505260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509505320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509505380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509505440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509505500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509505560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509505620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509505680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509505740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509505800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509505860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509505920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509505980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509506040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509506100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509506160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509506220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509506280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509506340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509506400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509506460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509506520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509506580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509506640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509506700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509506760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509506820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509506880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509506940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509507000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509507060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509507120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509507180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509507240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509507300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509507360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509507420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509507480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509507540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509507600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509507660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509507720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509507780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509507840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509507900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509507960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509508020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509508080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509508140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509508200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509508260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509508320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509508380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509508440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509508500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509508560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509508620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509508680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509508740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509508800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509508860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509508920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509508980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509509040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509509100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509509160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509509220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509509280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509509340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509509400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509509460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509509520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509509580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509509640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509509700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509509760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509509820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509509880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509509940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509510000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509510060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509510120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509510180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509510240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509510300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509510360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509510420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509510480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509510540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509510600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509510660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509510720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509510780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509510840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509510900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509510960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509511020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509511080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509511140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509511200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509511260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509511320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509511380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509511440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509511500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509511560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509511620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509511680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509511740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509511800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509511860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509511920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509511980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509512040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509512100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509512160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509512220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509512280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509512340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509512400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509512460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509512520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509512580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509512640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509512700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509512760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509512820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509512880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509512940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509513000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509513060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509513120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509513180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509513240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509513300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509513360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509513420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509513480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509513540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509513600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509513660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509513720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509513780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509513840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509513900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509513960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509514020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509514080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509514140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509514200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509514260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509514320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509514380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509514440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509514500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509514560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509514620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509514680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509514740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509514800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509514860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509514920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509514980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509515040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509515100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509515160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509515220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509515280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509515340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509515400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509515460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509515520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509515580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509515640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509515700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509515760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509515820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509515880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509515940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509516000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509516060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509516120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509516180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509516240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509516300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509516360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509516420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509516480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509516540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509516600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509516660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509516720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509516780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509516840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509516900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509516960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509517020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509517080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509517140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509517200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509517260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509517320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509517380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509517440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509517500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509517560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509517620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509517680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509517740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509517800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509517860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509517920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509517980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509518040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509518100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509518160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509518220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509518280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509518340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509518400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509518460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509518520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509518580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509518640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509518700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509518760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509518820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509518880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509518940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509519000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509519060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509519120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509519180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509519240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509519300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509519360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509519420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509519480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509519540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509519600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509519660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509519720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509519780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509519840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509519900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509519960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509520020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509520080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509520140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509520200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509520260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509520320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509520380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509520440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509520500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509520560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509520620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509520680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509520740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509520800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509520860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509520920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509520980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509521040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509521100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509521160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509521220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509521280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509521340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509521400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509521460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509521520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509521580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509521640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509521700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509521760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509521820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509521880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509521940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509522000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509522060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509522120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509522180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509522240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509522300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509522360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509522420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509522480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509522540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509522600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509522660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509522720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509522780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509522840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509522900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509522960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509523020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509523080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509523140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509523200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509523260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509523320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509523380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509523440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509523500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509523560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509523620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509523680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509523740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509523800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509523860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509523920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509523980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509524040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509524100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509524160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509524220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509524280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509524340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509524400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509524460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509524520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509524580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509524640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509524700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509524760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509524820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509524880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509524940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509525000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509525060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509525120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509525180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509525240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509525300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509525360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509525420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509525480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509525540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509525600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509525660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509525720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509525780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509525840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509525900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509525960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509526020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509526080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509526140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509526200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509526260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509526320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509526380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509526440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509526500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509526560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509526620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509526680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509526740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509526800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509526860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509526920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509526980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509527040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509527100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509527160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509527220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509527280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509527340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509527400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509527460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509527520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509527580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509527640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509527700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509527760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509527820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509527880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509527940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509528000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509528060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509528120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509528180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509528240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509528300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509528360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509528420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509528480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509528540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509528600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509528660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509528720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509528780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509528840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509528900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509528960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509529020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509529080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509529140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509529200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509529260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509529320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509529380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509529440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509529500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509529560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509529620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509529680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509529740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509529800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509529860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509529920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509529980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509530040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509530100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509530160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509530220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509530280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509530340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509530400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509530460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509530520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509530580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509530640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509530700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509530760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509530820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509530880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509530940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509531000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509531060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509531120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509531180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509531240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509531300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509531360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509531420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509531480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509531540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509531600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509531660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509531720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509531780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509531840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509531900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509531960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509532020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509532080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509532140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509532200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509532260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509532320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509532380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509532440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509532500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509532560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509532620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509532680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509532740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509532800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509532860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509532920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509532980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509533040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509533100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509533160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509533220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509533280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509533340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509533400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509533460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509533520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509533580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509533640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509533700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509533760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509533820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509533880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509533940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509534000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509534060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509534120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509534180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509534240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509534300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509534360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509534420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509534480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509534540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509534600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509534660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509534720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509534780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509534840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509534900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509534960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509535020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509535080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509535140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509535200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509535260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509535320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509535380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509535440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509535500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509535560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509535620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509535680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509535740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509535800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509535860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509535920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509535980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509536040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509536100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509536160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509536220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509536280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509536340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509536400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509536460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509536520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509536580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509536640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509536700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509536760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509536820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509536880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509536940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509537000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509537060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509537120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509537180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509537240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509537300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509537360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509537420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509537480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509537540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509537600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509537660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509537720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509537780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509537840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509537900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509537960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509538020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509538080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509538140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509538200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509538260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509538320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509538380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509538440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509538500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509538560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509538620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509538680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509538740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509538800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509538860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509538920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509538980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509539040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509539100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509539160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509539220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509539280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509539340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509539400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509539460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509539520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509539580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509539640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509539700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509539760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509539820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509539880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509539940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509540000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509540060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509540120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509540180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509540240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509540300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509540360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509540420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509540480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509540540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509540600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509540660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509540720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509540780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509540840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509540900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509540960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509541020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509541080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509541140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509541200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509541260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509541320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509541380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509541440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509541500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509541560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509541620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509541680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509541740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509541800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509541860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509541920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509541980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509542040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509542100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509542160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509542220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509542280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509542340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509542400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509542460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509542520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509542580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509542640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509542700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509542760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509542820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509542880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509542940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509543000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509543060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509543120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509543180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509543240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509543300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509543360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509543420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509543480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509543540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509543600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509543660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509543720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509543780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509543840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509543900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509543960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509544020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509544080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509544140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509544200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509544260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509544320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509544380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509544440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509544500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509544560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509544620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509544680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509544740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509544800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509544860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509544920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509544980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509545040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509545100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509545160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509545220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509545280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509545340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509545400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509545460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509545520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509545580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509545640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509545700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509545760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509545820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509545880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509545940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509546000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509546060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509546120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509546180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509546240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509546300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509546360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509546420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509546480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509546540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509546600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509546660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509546720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509546780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509546840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509546900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509546960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509547020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509547080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509547140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509547200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509547260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509547320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509547380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509547440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509547500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509547560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509547620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509547680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509547740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509547800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509547860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509547920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509547980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509548040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509548100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509548160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509548220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509548280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509548340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509548400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509548460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509548520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509548580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509548640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509548700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509548760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509548820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509548880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509548940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509549000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509549060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509549120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509549180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509549240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509549300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509549360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509549420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509549480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509549540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509549600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509549660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509549720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509549780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509549840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509549900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509549960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509550020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509550080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509550140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509550200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509550260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509550320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509550380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509550440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509550500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509550560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509550620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509550680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509550740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509550800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509550860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509550920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509550980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509551040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509551100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509551160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509551220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509551280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509551340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509551400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509551460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509551520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509551580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509551640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509551700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509551760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509551820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509551880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509551940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509552000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509552060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509552120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509552180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509552240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509552300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509552360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509552420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509552480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509552540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509552600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509552660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509552720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509552780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509552840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509552900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509552960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509553020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509553080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509553140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509553200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509553260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509553320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509553380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509553440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509553500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509553560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509553620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509553680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509553740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509553800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509553860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509553920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509553980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509554040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509554100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509554160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509554220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509554280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509554340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509554400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509554460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509554520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509554580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509554640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509554700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509554760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509554820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509554880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509554940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509555000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509555060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509555120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509555180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509555240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509555300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509555360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509555420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509555480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509555540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509555600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509555660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509555720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509555780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509555840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509555900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509555960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509556020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509556080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509556140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509556200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509556260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509556320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509556380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509556440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509556500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509556560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509556620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509556680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509556740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509556800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509556860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509556920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509556980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509557040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509557100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509557160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509557220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509557280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509557340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509557400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509557460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509557520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509557580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509557640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509557700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509557760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509557820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509557880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509557940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509558000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509558060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509558120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509558180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509558240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509558300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509558360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509558420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509558480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509558540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509558600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509558660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509558720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509558780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509558840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509558900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509558960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509559020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509559080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509559140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509559200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509559260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509559320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509559380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509559440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509559500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509559560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509559620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509559680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509559740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509559800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509559860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509559920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509559980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509560040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509560100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509560160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509560220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509560280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509560340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509560400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509560460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509560520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509560580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509560640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509560700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509560760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509560820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509560880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509560940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509561000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509561060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509561120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509561180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509561240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509561300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509561360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509561420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509561480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509561540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509561600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509561660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509561720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509561780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509561840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509561900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509561960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509562020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509562080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509562140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509562200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509562260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509562320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509562380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509562440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509562500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509562560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509562620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509562680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509562740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509562800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509562860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509562920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509562980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509563040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509563100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509563160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509563220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509563280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509563340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509563400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509563460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509563520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509563580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509563640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509563700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509563760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509563820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509563880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509563940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509564000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509564060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509564120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509564180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509564240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509564300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509564360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509564420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509564480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509564540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509564600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509564660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509564720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509564780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509564840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509564900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509564960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509565020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509565080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509565140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509565200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509565260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509565320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509565380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509565440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509565500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509565560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509565620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509565680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509565740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509565800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509565860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509565920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509565980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509566040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509566100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509566160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509566220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509566280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509566340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509566400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509566460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509566520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509566580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509566640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509566700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509566760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509566820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509566880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509566940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509567000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509567060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509567120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509567180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509567240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509567300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509567360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509567420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509567480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509567540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509567600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509567660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509567720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509567780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509567840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509567900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509567960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509568020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509568080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509568140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509568200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509568260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509568320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509568380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509568440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509568500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509568560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509568620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509568680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509568740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509568800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509568860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509568920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509568980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509569040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509569100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509569160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509569220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509569280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509569340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509569400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509569460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509569520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509569580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509569640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509569700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509569760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509569820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509569880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509569940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509570000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509570060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509570120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509570180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509570240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509570300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509570360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509570420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509570480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509570540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509570600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509570660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509570720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509570780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509570840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509570900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509570960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509571020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509571080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509571140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509571200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509571260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509571320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509571380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509571440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509571500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509571560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509571620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509571680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509571740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509571800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509571860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509571920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509571980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509572040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509572100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509572160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509572220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509572280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509572340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509572400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509572460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509572520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509572580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509572640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509572700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509572760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509572820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509572880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509572940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509573000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509573060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509573120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509573180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509573240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509573300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509573360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509573420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509573480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509573540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509573600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509573660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509573720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509573780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509573840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509573900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509573960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509574020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509574080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509574140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509574200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509574260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509574320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509574380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509574440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509574500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509574560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509574620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509574680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509574740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509574800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509574860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509574920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509574980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509575040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509575100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509575160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509575220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509575280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509575340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509575400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509575460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509575520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509575580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509575640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509575700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509575760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509575820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509575880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509575940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509576000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509576060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509576120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509576180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509576240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509576300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509576360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509576420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509576480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509576540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509576600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509576660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509576720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509576780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509576840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509576900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509576960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509577020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509577080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509577140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509577200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509577260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509577320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509577380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509577440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509577500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509577560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509577620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509577680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509577740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509577800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509577860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509577920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509577980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509578040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509578100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509578160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509578220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509578280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509578340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509578400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509578460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509578520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509578580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509578640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509578700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509578760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509578820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509578880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509578940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509579000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509579060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509579120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509579180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509579240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509579300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509579360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509579420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509579480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509579540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509579600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509579660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509579720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509579780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509579840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509579900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509579960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509580020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509580080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509580140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509580200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509580260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509580320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509580380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509580440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509580500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509580560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509580620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509580680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509580740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509580800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509580860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509580920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509580980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509581040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509581100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509581160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509581220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509581280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509581340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509581400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509581460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509581520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509581580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509581640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509581700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509581760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509581820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509581880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509581940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509582000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509582060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509582120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509582180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509582240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509582300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509582360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509582420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509582480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509582540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509582600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509582660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509582720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509582780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509582840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509582900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509582960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509583020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509583080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509583140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509583200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509583260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509583320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509583380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509583440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509583500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509583560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509583620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509583680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509583740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509583800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509583860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509583920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509583980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509584040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509584100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509584160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509584220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509584280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509584340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509584400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509584460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509584520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509584580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509584640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509584700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509584760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509584820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509584880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509584940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509585000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509585060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509585120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509585180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509585240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509585300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509585360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509585420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509585480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509585540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509585600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509585660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509585720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509585780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509585840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509585900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509585960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509586020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509586080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509586140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509586200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509586260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509586320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509586380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509586440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509586500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509586560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509586620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509586680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509586740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509586800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509586860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509586920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509586980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509587040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509587100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509587160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509587220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509587280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509587340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509587400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509587460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509587520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509587580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509587640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509587700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509587760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509587820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509587880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509587940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509588000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509588060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509588120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509588180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509588240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509588300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509588360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509588420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509588480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509588540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509588600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509588660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509588720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509588780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509588840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509588900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509588960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509589020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509589080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509589140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509589200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509589260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509589320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509589380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509589440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509589500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509589560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509589620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509589680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509589740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509589800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509589860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509589920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509589980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509590040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509590100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509590160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509590220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509590280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509590340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509590400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509590460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509590520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509590580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509590640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509590700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509590760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509590820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509590880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509590940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509591000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509591060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509591120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509591180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509591240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509591300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509591360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509591420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509591480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509591540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509591600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509591660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509591720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509591780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509591840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509591900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509591960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509592020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509592080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509592140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509592200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509592260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509592320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509592380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509592440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509592500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509592560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509592620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509592680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509592740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509592800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509592860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509592920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509592980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509593040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509593100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509593160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509593220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509593280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509593340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509593400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509593460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509593520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509593580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509593640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509593700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509593760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509593820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509593880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509593940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509594000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509594060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509594120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509594180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509594240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509594300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509594360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509594420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509594480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509594540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509594600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509594660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509594720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509594780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509594840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509594900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509594960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509595020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509595080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509595140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509595200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509595260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509595320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509595380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509595440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509595500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509595560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509595620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509595680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509595740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509595800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509595860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509595920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509595980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509596040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509596100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509596160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509596220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509596280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509596340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509596400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509596460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509596520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509596580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509596640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509596700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509596760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509596820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509596880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509596940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509597000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509597060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509597120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509597180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509597240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509597300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509597360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509597420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509597480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509597540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509597600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509597660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509597720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509597780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509597840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509597900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509597960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509598020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509598080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509598140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509598200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509598260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509598320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509598380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509598440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509598500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509598560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509598620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509598680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509598740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509598800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509598860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509598920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509598980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509599040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509599100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509599160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509599220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509599280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509599340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509599400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509599460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509599520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509599580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509599640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509599700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509599760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509599820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509599880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509599940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509600000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509600060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509600120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509600180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509600240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509600300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509600360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509600420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509600480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509600540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509600600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509600660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509600720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509600780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509600840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509600900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509600960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509601020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509601080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509601140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509601200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509601260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509601320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509601380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509601440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509601500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509601560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509601620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509601680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509601740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509601800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509601860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509601920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509601980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509602040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509602100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509602160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509602220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509602280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509602340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509602400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509602460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509602520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509602580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509602640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509602700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509602760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509602820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509602880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509602940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509603000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509603060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509603120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509603180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509603240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509603300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509603360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509603420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509603480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509603540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509603600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509603660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509603720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509603780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509603840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509603900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509603960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509604020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509604080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509604140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509604200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509604260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509604320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509604380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509604440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509604500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509604560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509604620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509604680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509604740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509604800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509604860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509604920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509604980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509605040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509605100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509605160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509605220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509605280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509605340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509605400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509605460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509605520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509605580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509605640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509605700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509605760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509605820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509605880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509605940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509606000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509606060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509606120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509606180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509606240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509606300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509606360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509606420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509606480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509606540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509606600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509606660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509606720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509606780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509606840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509606900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509606960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509607020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509607080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509607140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509607200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509607260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509607320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509607380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509607440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509607500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509607560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509607620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509607680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509607740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509607800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509607860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509607920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509607980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509608040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509608100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509608160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509608220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509608280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509608340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509608400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509608460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509608520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509608580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509608640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509608700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509608760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509608820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509608880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509608940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509609000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509609060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509609120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509609180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509609240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509609300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509609360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509609420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509609480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509609540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509609600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509609660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509609720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509609780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509609840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509609900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509609960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509610020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509610080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509610140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509610200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509610260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509610320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509610380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509610440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509610500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509610560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509610620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509610680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509610740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509610800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509610860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509610920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509610980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509611040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509611100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509611160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509611220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509611280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509611340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509611400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509611460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509611520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509611580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509611640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509611700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509611760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509611820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509611880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509611940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509612000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509612060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509612120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509612180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509612240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509612300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509612360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509612420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509612480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509612540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509612600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509612660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509612720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509612780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509612840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509612900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509612960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509613020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509613080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509613140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509613200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509613260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509613320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509613380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509613440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509613500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509613560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509613620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509613680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509613740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509613800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509613860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509613920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509613980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509614040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509614100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509614160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509614220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509614280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509614340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509614400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509614460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509614520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509614580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509614640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509614700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509614760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509614820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509614880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509614940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509615000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509615060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509615120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509615180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509615240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509615300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509615360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509615420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509615480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509615540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509615600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509615660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509615720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509615780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509615840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509615900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509615960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509616020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509616080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509616140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509616200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509616260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509616320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509616380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509616440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509616500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509616560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509616620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509616680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509616740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509616800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509616860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509616920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509616980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509617040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509617100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509617160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509617220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509617280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509617340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509617400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509617460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509617520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509617580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509617640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509617700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509617760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509617820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509617880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509617940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509618000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509618060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509618120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509618180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509618240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509618300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509618360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509618420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509618480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509618540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509618600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509618660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509618720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509618780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509618840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509618900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509618960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509619020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509619080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509619140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509619200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509619260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509619320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509619380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509619440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509619500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509619560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509619620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509619680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509619740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509619800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509619860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509619920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509619980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509620040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509620100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509620160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509620220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509620280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509620340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509620400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509620460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509620520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509620580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509620640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509620700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509620760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509620820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509620880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509620940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509621000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509621060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509621120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509621180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509621240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509621300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509621360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509621420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509621480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509621540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509621600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509621660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509621720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509621780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509621840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509621900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509621960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509622020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509622080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509622140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509622200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509622260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509622320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509622380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509622440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509622500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509622560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509622620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509622680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509622740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509622800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509622860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509622920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509622980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509623040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509623100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509623160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509623220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509623280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509623340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509623400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509623460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509623520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509623580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509623640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509623700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509623760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509623820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509623880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509623940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509624000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509624060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509624120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509624180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509624240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509624300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509624360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509624420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509624480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509624540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509624600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509624660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509624720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509624780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509624840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509624900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509624960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509625020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509625080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509625140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509625200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509625260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509625320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509625380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509625440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509625500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509625560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509625620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509625680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509625740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509625800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509625860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509625920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509625980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509626040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509626100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509626160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509626220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509626280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509626340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509626400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509626460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509626520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509626580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509626640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509626700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509626760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509626820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509626880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509626940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509627000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509627060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509627120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509627180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509627240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509627300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509627360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509627420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509627480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509627540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509627600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509627660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509627720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509627780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509627840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509627900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509627960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509628020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509628080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509628140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509628200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509628260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509628320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509628380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509628440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509628500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509628560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509628620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509628680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509628740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509628800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509628860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509628920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509628980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509629040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509629100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509629160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509629220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509629280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509629340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509629400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509629460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509629520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509629580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509629640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509629700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509629760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509629820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509629880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509629940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509630000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509630060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509630120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509630180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509630240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509630300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509630360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509630420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509630480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509630540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509630600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509630660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509630720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509630780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509630840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509630900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509630960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509631020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509631080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509631140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509631200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509631260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509631320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509631380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509631440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509631500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509631560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509631620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509631680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509631740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509631800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509631860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509631920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509631980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509632040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509632100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509632160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509632220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509632280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509632340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509632400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509632460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509632520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509632580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509632640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509632700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509632760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509632820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509632880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509632940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509633000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509633060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509633120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509633180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509633240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509633300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509633360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509633420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509633480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509633540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509633600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509633660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509633720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509633780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509633840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509633900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509633960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509634020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509634080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509634140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509634200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509634260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509634320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509634380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509634440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509634500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509634560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509634620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509634680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509634740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509634800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509634860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509634920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509634980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509635040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509635100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509635160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509635220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509635280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509635340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509635400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509635460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509635520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509635580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509635640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509635700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509635760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509635820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509635880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509635940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509636000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509636060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509636120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509636180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509636240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509636300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509636360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509636420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509636480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509636540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509636600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509636660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509636720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509636780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509636840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509636900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509636960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509637020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509637080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509637140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509637200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509637260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509637320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509637380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509637440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509637500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509637560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509637620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509637680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509637740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509637800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509637860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509637920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509637980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509638040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509638100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509638160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509638220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509638280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509638340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509638400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509638460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509638520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509638580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509638640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509638700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509638760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509638820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509638880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509638940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509639000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509639060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509639120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509639180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509639240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509639300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509639360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509639420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509639480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509639540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509639600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509639660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509639720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509639780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509639840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509639900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509639960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509640020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509640080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509640140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509640200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509640260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509640320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509640380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509640440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509640500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509640560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509640620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509640680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509640740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509640800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509640860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509640920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509640980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509641040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509641100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509641160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509641220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509641280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509641340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509641400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509641460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509641520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509641580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509641640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509641700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509641760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509641820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509641880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509641940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509642000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509642060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509642120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509642180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509642240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509642300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509642360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509642420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509642480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509642540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509642600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509642660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509642720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509642780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509642840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509642900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509642960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509643020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509643080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509643140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509643200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509643260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509643320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509643380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509643440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509643500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509643560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509643620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509643680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509643740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509643800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509643860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509643920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509643980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509644040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509644100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509644160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509644220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509644280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509644340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509644400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509644460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509644520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509644580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509644640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509644700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509644760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509644820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509644880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509644940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509645000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509645060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509645120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509645180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509645240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509645300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509645360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509645420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509645480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509645540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509645600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509645660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509645720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509645780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509645840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509645900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509645960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509646020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509646080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509646140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509646200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509646260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509646320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509646380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509646440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509646500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509646560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509646620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509646680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509646740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509646800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509646860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509646920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509646980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509647040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509647100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509647160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509647220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509647280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509647340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509647400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509647460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509647520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509647580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509647640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509647700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509647760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509647820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509647880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509647940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509648000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509648060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509648120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509648180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509648240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509648300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509648360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509648420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509648480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509648540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509648600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509648660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509648720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509648780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509648840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509648900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509648960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509649020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509649080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509649140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509649200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509649260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509649320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509649380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509649440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509649500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509649560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509649620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509649680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509649740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509649800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509649860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509649920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509649980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509650040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509650100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509650160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509650220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509650280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509650340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509650400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509650460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509650520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509650580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509650640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509650700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509650760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509650820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509650880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509650940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509651000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509651060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509651120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509651180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509651240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509651300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509651360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509651420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509651480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509651540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509651600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509651660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509651720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509651780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509651840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509651900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509651960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509652020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509652080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509652140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509652200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509652260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509652320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509652380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509652440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509652500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509652560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509652620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509652680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509652740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509652800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509652860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509652920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509652980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509653040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509653100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509653160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509653220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509653280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509653340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509653400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509653460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509653520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509653580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509653640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509653700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509653760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509653820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509653880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509653940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509654000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509654060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509654120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509654180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509654240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509654300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509654360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509654420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509654480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509654540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509654600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509654660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509654720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509654780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509654840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509654900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509654960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509655020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509655080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509655140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509655200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509655260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509655320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509655380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509655440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509655500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509655560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509655620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509655680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509655740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509655800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509655860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509655920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509655980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509656040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509656100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509656160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509656220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509656280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509656340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509656400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509656460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509656520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509656580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509656640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509656700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509656760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509656820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509656880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509656940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509657000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509657060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509657120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509657180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509657240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509657300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509657360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509657420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509657480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509657540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509657600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509657660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509657720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509657780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509657840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509657900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509657960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509658020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509658080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509658140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509658200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509658260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509658320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509658380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509658440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509658500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509658560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509658620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509658680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509658740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509658800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509658860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509658920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509658980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509659040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509659100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509659160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509659220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509659280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509659340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509659400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509659460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509659520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509659580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509659640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509659700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509659760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509659820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509659880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509659940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509660000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509660060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509660120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509660180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509660240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509660300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509660360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509660420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509660480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509660540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509660600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509660660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509660720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509660780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509660840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509660900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509660960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509661020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509661080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509661140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509661200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509661260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509661320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509661380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509661440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509661500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509661560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509661620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509661680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509661740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509661800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509661860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509661920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509661980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509662040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509662100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509662160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509662220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509662280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509662340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509662400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509662460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509662520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509662580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509662640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509662700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509662760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509662820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509662880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509662940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509663000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509663060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509663120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509663180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509663240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509663300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509663360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509663420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509663480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509663540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509663600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509663660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509663720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509663780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509663840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509663900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509663960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509664020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509664080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509664140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509664200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509664260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509664320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509664380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509664440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509664500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509664560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509664620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509664680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509664740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509664800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509664860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509664920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509664980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509665040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509665100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509665160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509665220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509665280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509665340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509665400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509665460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509665520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509665580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509665640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509665700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509665760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509665820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509665880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509665940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509666000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509666060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509666120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509666180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509666240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509666300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509666360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509666420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509666480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509666540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509666600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509666660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509666720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509666780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509666840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509666900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509666960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509667020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509667080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509667140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509667200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509667260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509667320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509667380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509667440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509667500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509667560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509667620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509667680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509667740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509667800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509667860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509667920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509667980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509668040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509668100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509668160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509668220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509668280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509668340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509668400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509668460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509668520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509668580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509668640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509668700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509668760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509668820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509668880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509668940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509669000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509669060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509669120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509669180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509669240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509669300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509669360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509669420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509669480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509669540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509669600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509669660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509669720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509669780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509669840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509669900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509669960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509670020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509670080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509670140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509670200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509670260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509670320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509670380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509670440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509670500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509670560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509670620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509670680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509670740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509670800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509670860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509670920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509670980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509671040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509671100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509671160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509671220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509671280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509671340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509671400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509671460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509671520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509671580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509671640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509671700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509671760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509671820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509671880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509671940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509672000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509672060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509672120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509672180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509672240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509672300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509672360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509672420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509672480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509672540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509672600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509672660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509672720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509672780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509672840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509672900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509672960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509673020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509673080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509673140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509673200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509673260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509673320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509673380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509673440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509673500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509673560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509673620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509673680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509673740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509673800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509673860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509673920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509673980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509674040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509674100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509674160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509674220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509674280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509674340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509674400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509674460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509674520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509674580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509674640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509674700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509674760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509674820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509674880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509674940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509675000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509675060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509675120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509675180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509675240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509675300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509675360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509675420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509675480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509675540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509675600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509675660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509675720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509675780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509675840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509675900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509675960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509676020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509676080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509676140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509676200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509676260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509676320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509676380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509676440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509676500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509676560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509676620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509676680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509676740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509676800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509676860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509676920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509676980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509677040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509677100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509677160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509677220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509677280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509677340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509677400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509677460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509677520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509677580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509677640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509677700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509677760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509677820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509677880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509677940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509678000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509678060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509678120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509678180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509678240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509678300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509678360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509678420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509678480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509678540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509678600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509678660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509678720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509678780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509678840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509678900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509678960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509679020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509679080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509679140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509679200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509679260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509679320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509679380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509679440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509679500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509679560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509679620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509679680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509679740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509679800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509679860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509679920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509679980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509680040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509680100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509680160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509680220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509680280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509680340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509680400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509680460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509680520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509680580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509680640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509680700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509680760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509680820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509680880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509680940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509681000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509681060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509681120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509681180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509681240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509681300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509681360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509681420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509681480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509681540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509681600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509681660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509681720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509681780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509681840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509681900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509681960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509682020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509682080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509682140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509682200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509682260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509682320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509682380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509682440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509682500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509682560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509682620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509682680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509682740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509682800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509682860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509682920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509682980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509683040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509683100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509683160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509683220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509683280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509683340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509683400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509683460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509683520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509683580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509683640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509683700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509683760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509683820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509683880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509683940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509684000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509684060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509684120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509684180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509684240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509684300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509684360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509684420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509684480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509684540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509684600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509684660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509684720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509684780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509684840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509684900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509684960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509685020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509685080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509685140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509685200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509685260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509685320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509685380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509685440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509685500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509685560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509685620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509685680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509685740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509685800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509685860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509685920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509685980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509686040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509686100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509686160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509686220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509686280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509686340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509686400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509686460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509686520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509686580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509686640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509686700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509686760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509686820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509686880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509686940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509687000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509687060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509687120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509687180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509687240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509687300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509687360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509687420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509687480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509687540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509687600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509687660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509687720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509687780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509687840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509687900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509687960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509688020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509688080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509688140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509688200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509688260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509688320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509688380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509688440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509688500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509688560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509688620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509688680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509688740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509688800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509688860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509688920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509688980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509689040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509689100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509689160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509689220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509689280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509689340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509689400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509689460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509689520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509689580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509689640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509689700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509689760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509689820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509689880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509689940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509690000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509690060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509690120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509690180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509690240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509690300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509690360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509690420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509690480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509690540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509690600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509690660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509690720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509690780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509690840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509690900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509690960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509691020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509691080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509691140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509691200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509691260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509691320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509691380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509691440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509691500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509691560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509691620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509691680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509691740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509691800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509691860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509691920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509691980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509692040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509692100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509692160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509692220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509692280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509692340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509692400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509692460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509692520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509692580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509692640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509692700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509692760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509692820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509692880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509692940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509693000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509693060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509693120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509693180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509693240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509693300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509693360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509693420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509693480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509693540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509693600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509693660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509693720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509693780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509693840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509693900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509693960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509694020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509694080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509694140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509694200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509694260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509694320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509694380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509694440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509694500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509694560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509694620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509694680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509694740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509694800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509694860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509694920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509694980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509695040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509695100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509695160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509695220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509695280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509695340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509695400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509695460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509695520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509695580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509695640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509695700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509695760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509695820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509695880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509695940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509696000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509696060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509696120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509696180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509696240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509696300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509696360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509696420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509696480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509696540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509696600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509696660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509696720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509696780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509696840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509696900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509696960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509697020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509697080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509697140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509697200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509697260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509697320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509697380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509697440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509697500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509697560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509697620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509697680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509697740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509697800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509697860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509697920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509697980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509698040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509698100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509698160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509698220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509698280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509698340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509698400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509698460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509698520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509698580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509698640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509698700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509698760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509698820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509698880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509698940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509699000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509699060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509699120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509699180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509699240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509699300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509699360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509699420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509699480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509699540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509699600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509699660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509699720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509699780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509699840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509699900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509699960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509700020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509700080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509700140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509700200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509700260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509700320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509700380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509700440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509700500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509700560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509700620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509700680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509700740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509700800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509700860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509700920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509700980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509701040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509701100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509701160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509701220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509701280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509701340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509701400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509701460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509701520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509701580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509701640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509701700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509701760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509701820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509701880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509701940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509702000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509702060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509702120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509702180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509702240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509702300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509702360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509702420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509702480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509702540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509702600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509702660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509702720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509702780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509702840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509702900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509702960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509703020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509703080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509703140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509703200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509703260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509703320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509703380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509703440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509703500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509703560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509703620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509703680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509703740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509703800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509703860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509703920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509703980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509704040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509704100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509704160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509704220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509704280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509704340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509704400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509704460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509704520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509704580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509704640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509704700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509704760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509704820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509704880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509704940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509705000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509705060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509705120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509705180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509705240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509705300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509705360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509705420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509705480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509705540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509705600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509705660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509705720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509705780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509705840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509705900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509705960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509706020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509706080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509706140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509706200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509706260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509706320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509706380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509706440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509706500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509706560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509706620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509706680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509706740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509706800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509706860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509706920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509706980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509707040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509707100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509707160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509707220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509707280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509707340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509707400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509707460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509707520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509707580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509707640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509707700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509707760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509707820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509707880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509707940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509708000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509708060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509708120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509708180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509708240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509708300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509708360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509708420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509708480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509708540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509708600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509708660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509708720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509708780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509708840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509708900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509708960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509709020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509709080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509709140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509709200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509709260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509709320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509709380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509709440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509709500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509709560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509709620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509709680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509709740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509709800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509709860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509709920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509709980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509710040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509710100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509710160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509710220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509710280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509710340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509710400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509710460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509710520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509710580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509710640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509710700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509710760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509710820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509710880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509710940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509711000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509711060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509711120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509711180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509711240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509711300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509711360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509711420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509711480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509711540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509711600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509711660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509711720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509711780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509711840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509711900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509711960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509712020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509712080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509712140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509712200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509712260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509712320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509712380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509712440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509712500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509712560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509712620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509712680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509712740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509712800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509712860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509712920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509712980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509713040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509713100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509713160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509713220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509713280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509713340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509713400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509713460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509713520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509713580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509713640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509713700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509713760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509713820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509713880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509713940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509714000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509714060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509714120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509714180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509714240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509714300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509714360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509714420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509714480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509714540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509714600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509714660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509714720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509714780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509714840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509714900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509714960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509715020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509715080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509715140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509715200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509715260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509715320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509715380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509715440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509715500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509715560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509715620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509715680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509715740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509715800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509715860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509715920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509715980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509716040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509716100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509716160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509716220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509716280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509716340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509716400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509716460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509716520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509716580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509716640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509716700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509716760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509716820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509716880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509716940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509717000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509717060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509717120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509717180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509717240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509717300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509717360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509717420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509717480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509717540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509717600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509717660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509717720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509717780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509717840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509717900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509717960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509718020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509718080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509718140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509718200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509718260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509718320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509718380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509718440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509718500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509718560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509718620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509718680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509718740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509718800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509718860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509718920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509718980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509719040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509719100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509719160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509719220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509719280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509719340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509719400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509719460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509719520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509719580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509719640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509719700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509719760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509719820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509719880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509719940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509720000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509720060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509720120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509720180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509720240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509720300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509720360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509720420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509720480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509720540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509720600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509720660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509720720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509720780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509720840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509720900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509720960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509721020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509721080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509721140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509721200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509721260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509721320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509721380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509721440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509721500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509721560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509721620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509721680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509721740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509721800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509721860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509721920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509721980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509722040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509722100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509722160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509722220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509722280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509722340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509722400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509722460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509722520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509722580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509722640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509722700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509722760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509722820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509722880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509722940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509723000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509723060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509723120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509723180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509723240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509723300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509723360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509723420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509723480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509723540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509723600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509723660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509723720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509723780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509723840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509723900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509723960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509724020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509724080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509724140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509724200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509724260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509724320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509724380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509724440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509724500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509724560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509724620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509724680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509724740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509724800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509724860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509724920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509724980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509725040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509725100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509725160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509725220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509725280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509725340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509725400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509725460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509725520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509725580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509725640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509725700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509725760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509725820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509725880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509725940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509726000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509726060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509726120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509726180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509726240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509726300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509726360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509726420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509726480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509726540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509726600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509726660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509726720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509726780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509726840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509726900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509726960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509727020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509727080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509727140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509727200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509727260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509727320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509727380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509727440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509727500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509727560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509727620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509727680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509727740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509727800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509727860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509727920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509727980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509728040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509728100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509728160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509728220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509728280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509728340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509728400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509728460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509728520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509728580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509728640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509728700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509728760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509728820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509728880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509728940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509729000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509729060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509729120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509729180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509729240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509729300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509729360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509729420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509729480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509729540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509729600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509729660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509729720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509729780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509729840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509729900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509729960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509730020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509730080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509730140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509730200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509730260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509730320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509730380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509730440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509730500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509730560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509730620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509730680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509730740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509730800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509730860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509730920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509730980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509731040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509731100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509731160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509731220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509731280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509731340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509731400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509731460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509731520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509731580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509731640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509731700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509731760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509731820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509731880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509731940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509732000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509732060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509732120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509732180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509732240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509732300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509732360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509732420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509732480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509732540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509732600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509732660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509732720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509732780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509732840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509732900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509732960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509733020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509733080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509733140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509733200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509733260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509733320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509733380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509733440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509733500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509733560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509733620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509733680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509733740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509733800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509733860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509733920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509733980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509734040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509734100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509734160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509734220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509734280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509734340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509734400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509734460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509734520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509734580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509734640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509734700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509734760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509734820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509734880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509734940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509735000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509735060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509735120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509735180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509735240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509735300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509735360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509735420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509735480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509735540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509735600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509735660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509735720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509735780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509735840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509735900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509735960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509736020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509736080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509736140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509736200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509736260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509736320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509736380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509736440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509736500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509736560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509736620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509736680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509736740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509736800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509736860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509736920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509736980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509737040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509737100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509737160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509737220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509737280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509737340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509737400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509737460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509737520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509737580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509737640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509737700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509737760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509737820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509737880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509737940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509738000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509738060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509738120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509738180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509738240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509738300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509738360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509738420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509738480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509738540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509738600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509738660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509738720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509738780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509738840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509738900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509738960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509739020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509739080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509739140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509739200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509739260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509739320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509739380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509739440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509739500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509739560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509739620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509739680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509739740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509739800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509739860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509739920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509739980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509740040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509740100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509740160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509740220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509740280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509740340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509740400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509740460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509740520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509740580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509740640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509740700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509740760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509740820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509740880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509740940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509741000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509741060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509741120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509741180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509741240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509741300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509741360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509741420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509741480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509741540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509741600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509741660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509741720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509741780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509741840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509741900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509741960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509742020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509742080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509742140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509742200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509742260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509742320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509742380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509742440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509742500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509742560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509742620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509742680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509742740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509742800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509742860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509742920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509742980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509743040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509743100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509743160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509743220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509743280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509743340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509743400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509743460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509743520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509743580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509743640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509743700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509743760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509743820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509743880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509743940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509744000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509744060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509744120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509744180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509744240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509744300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509744360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509744420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509744480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509744540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509744600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509744660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509744720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509744780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509744840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509744900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509744960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509745020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509745080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509745140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509745200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509745260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509745320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509745380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509745440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509745500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509745560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509745620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509745680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509745740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509745800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509745860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509745920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509745980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509746040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509746100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509746160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509746220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509746280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509746340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509746400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509746460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509746520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509746580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509746640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509746700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509746760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509746820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509746880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509746940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509747000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509747060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509747120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509747180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509747240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509747300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509747360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509747420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509747480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509747540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509747600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509747660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509747720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509747780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509747840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509747900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509747960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509748020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509748080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509748140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509748200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509748260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509748320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509748380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509748440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509748500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509748560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509748620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509748680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509748740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509748800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509748860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509748920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509748980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509749040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509749100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509749160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509749220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509749280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509749340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509749400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509749460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509749520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509749580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509749640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509749700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509749760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509749820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509749880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509749940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509750000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509750060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509750120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509750180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509750240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509750300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509750360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509750420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509750480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509750540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509750600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509750660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509750720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509750780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509750840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509750900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509750960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509751020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509751080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509751140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509751200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509751260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509751320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509751380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509751440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509751500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509751560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509751620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509751680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509751740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509751800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509751860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509751920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509751980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509752040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509752100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509752160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509752220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509752280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509752340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509752400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509752460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509752520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509752580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509752640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509752700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509752760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509752820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509752880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509752940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509753000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509753060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509753120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509753180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509753240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509753300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509753360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509753420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509753480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509753540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509753600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509753660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509753720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509753780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509753840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509753900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509753960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509754020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509754080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509754140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509754200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509754260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509754320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509754380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509754440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509754500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509754560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509754620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509754680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509754740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509754800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509754860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509754920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509754980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509755040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509755100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509755160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509755220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509755280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509755340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509755400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509755460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509755520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509755580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509755640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509755700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509755760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509755820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509755880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509755940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509756000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509756060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509756120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509756180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509756240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509756300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509756360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509756420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509756480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509756540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509756600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509756660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509756720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509756780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509756840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509756900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509756960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509757020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509757080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509757140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509757200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509757260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509757320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509757380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509757440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509757500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509757560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509757620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509757680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509757740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509757800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509757860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509757920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509757980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509758040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509758100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509758160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509758220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509758280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509758340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509758400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509758460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509758520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509758580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509758640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509758700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509758760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509758820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509758880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509758940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509759000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509759060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509759120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509759180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509759240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509759300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509759360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509759420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509759480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509759540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509759600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509759660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509759720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509759780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509759840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509759900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509759960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509760020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509760080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509760140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509760200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509760260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509760320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509760380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509760440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509760500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509760560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509760620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509760680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509760740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509760800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509760860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509760920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509760980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509761040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509761100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509761160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509761220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509761280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509761340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509761400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509761460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509761520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509761580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509761640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509761700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509761760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509761820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509761880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509761940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509762000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509762060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509762120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509762180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509762240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509762300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509762360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509762420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509762480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509762540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509762600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509762660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509762720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509762780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509762840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509762900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509762960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509763020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509763080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509763140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509763200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509763260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509763320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509763380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509763440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509763500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509763560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509763620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509763680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509763740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509763800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509763860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509763920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509763980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509764040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509764100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509764160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509764220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509764280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509764340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509764400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509764460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509764520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509764580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509764640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509764700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509764760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509764820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509764880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509764940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509765000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509765060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509765120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509765180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509765240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509765300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509765360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509765420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509765480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509765540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509765600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509765660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509765720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509765780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509765840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509765900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509765960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509766020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509766080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509766140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509766200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509766260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509766320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509766380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509766440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509766500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509766560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509766620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509766680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509766740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509766800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509766860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509766920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509766980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509767040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509767100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509767160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509767220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509767280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509767340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509767400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509767460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509767520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509767580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509767640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509767700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509767760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509767820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509767880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509767940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509768000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509768060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509768120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509768180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509768240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509768300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509768360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509768420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509768480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509768540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509768600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509768660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509768720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509768780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509768840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509768900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509768960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509769020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509769080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509769140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509769200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509769260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509769320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509769380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509769440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509769500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509769560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509769620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509769680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509769740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509769800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509769860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509769920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509769980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509770040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509770100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509770160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509770220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509770280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509770340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509770400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509770460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509770520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509770580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509770640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509770700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509770760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509770820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509770880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509770940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509771000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509771060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509771120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509771180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509771240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509771300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509771360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509771420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509771480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509771540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509771600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509771660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509771720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509771780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509771840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509771900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509771960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509772020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509772080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509772140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509772200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509772260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509772320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509772380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509772440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509772500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509772560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509772620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509772680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509772740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509772800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509772860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509772920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509772980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509773040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509773100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509773160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509773220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509773280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509773340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509773400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509773460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509773520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509773580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509773640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509773700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509773760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509773820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509773880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509773940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509774000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509774060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509774120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509774180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509774240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509774300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509774360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509774420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509774480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509774540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509774600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509774660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509774720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509774780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509774840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509774900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509774960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509775020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509775080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509775140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509775200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509775260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509775320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509775380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509775440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509775500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509775560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509775620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509775680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509775740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509775800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509775860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509775920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509775980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509776040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509776100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509776160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509776220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509776280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509776340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509776400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509776460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509776520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509776580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509776640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509776700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509776760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509776820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509776880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509776940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509777000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509777060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509777120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509777180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509777240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509777300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509777360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509777420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509777480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509777540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509777600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509777660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509777720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509777780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509777840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509777900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509777960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509778020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509778080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509778140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509778200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509778260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509778320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509778380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509778440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509778500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509778560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509778620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509778680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509778740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509778800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509778860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509778920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509778980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509779040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509779100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509779160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509779220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509779280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509779340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509779400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509779460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509779520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509779580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509779640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509779700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509779760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509779820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509779880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509779940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509780000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509780060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509780120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509780180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509780240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509780300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509780360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509780420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509780480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509780540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509780600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509780660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509780720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509780780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509780840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509780900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509780960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509781020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509781080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509781140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509781200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509781260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509781320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509781380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509781440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509781500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509781560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509781620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509781680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509781740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509781800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509781860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509781920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509781980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509782040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509782100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509782160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509782220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509782280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509782340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509782400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509782460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509782520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509782580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509782640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509782700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509782760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509782820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509782880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509782940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509783000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509783060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509783120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509783180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509783240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509783300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509783360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509783420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509783480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509783540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509783600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509783660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509783720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509783780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509783840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509783900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509783960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509784020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509784080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509784140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509784200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509784260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509784320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509784380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509784440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509784500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509784560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509784620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509784680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509784740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509784800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509784860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509784920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509784980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509785040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509785100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509785160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509785220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509785280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509785340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509785400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509785460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509785520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509785580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509785640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509785700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509785760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509785820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509785880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509785940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509786000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509786060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509786120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509786180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509786240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509786300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509786360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509786420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509786480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509786540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509786600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509786660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509786720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509786780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509786840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509786900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509786960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509787020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509787080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509787140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509787200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509787260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509787320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509787380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509787440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509787500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509787560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509787620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509787680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509787740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509787800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509787860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509787920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509787980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509788040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509788100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509788160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509788220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509788280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509788340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509788400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509788460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509788520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509788580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509788640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509788700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509788760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509788820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509788880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509788940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509789000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509789060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509789120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509789180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509789240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509789300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509789360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509789420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509789480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509789540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509789600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509789660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509789720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509789780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509789840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509789900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509789960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509790020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509790080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509790140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509790200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509790260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509790320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509790380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509790440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509790500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509790560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509790620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509790680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509790740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509790800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509790860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509790920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509790980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509791040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509791100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509791160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509791220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509791280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509791340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509791400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509791460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509791520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509791580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509791640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509791700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509791760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509791820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509791880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509791940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509792000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509792060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509792120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509792180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509792240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509792300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509792360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509792420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509792480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509792540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509792600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509792660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509792720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509792780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509792840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509792900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509792960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509793020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509793080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509793140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509793200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509793260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509793320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509793380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509793440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509793500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509793560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509793620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509793680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509793740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509793800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509793860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509793920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509793980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509794040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509794100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509794160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509794220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509794280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509794340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509794400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509794460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509794520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509794580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509794640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509794700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509794760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509794820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509794880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509794940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509795000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509795060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509795120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509795180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509795240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509795300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509795360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509795420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509795480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509795540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509795600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509795660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509795720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509795780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509795840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509795900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509795960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509796020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509796080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509796140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509796200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509796260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509796320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509796380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509796440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509796500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509796560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509796620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509796680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509796740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509796800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509796860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509796920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509796980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509797040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509797100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509797160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509797220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509797280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509797340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509797400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509797460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509797520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509797580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509797640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509797700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509797760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509797820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509797880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509797940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509798000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509798060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509798120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509798180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509798240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509798300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509798360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509798420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509798480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509798540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509798600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509798660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509798720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509798780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509798840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509798900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509798960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509799020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509799080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509799140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509799200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509799260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509799320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509799380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509799440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509799500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509799560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509799620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509799680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509799740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509799800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509799860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509799920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509799980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509800040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509800100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509800160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509800220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509800280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509800340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509800400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509800460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509800520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509800580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509800640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509800700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509800760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509800820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509800880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509800940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509801000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509801060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509801120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509801180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509801240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509801300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509801360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509801420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509801480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509801540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509801600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509801660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509801720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509801780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509801840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509801900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509801960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509802020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509802080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509802140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509802200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509802260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509802320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509802380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509802440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509802500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509802560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509802620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509802680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509802740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509802800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509802860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509802920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509802980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509803040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509803100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509803160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509803220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509803280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509803340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509803400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509803460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509803520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509803580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509803640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509803700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509803760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509803820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509803880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509803940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509804000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509804060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509804120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509804180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509804240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509804300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509804360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509804420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509804480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509804540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509804600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509804660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509804720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509804780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509804840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509804900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509804960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509805020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509805080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509805140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509805200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509805260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509805320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509805380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509805440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509805500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509805560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509805620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509805680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509805740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509805800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509805860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509805920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509805980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509806040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509806100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509806160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509806220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509806280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509806340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509806400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509806460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509806520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509806580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509806640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509806700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509806760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509806820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509806880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509806940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509807000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509807060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509807120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509807180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509807240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509807300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509807360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509807420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509807480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509807540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509807600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509807660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509807720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509807780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509807840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509807900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509807960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509808020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509808080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509808140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509808200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509808260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509808320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509808380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509808440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509808500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509808560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509808620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509808680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509808740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509808800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509808860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509808920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509808980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509809040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509809100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509809160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509809220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509809280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509809340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509809400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509809460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509809520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509809580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509809640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509809700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509809760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509809820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509809880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509809940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509810000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509810060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509810120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509810180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509810240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509810300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509810360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509810420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509810480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509810540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509810600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509810660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509810720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509810780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509810840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509810900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509810960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509811020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509811080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509811140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509811200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509811260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509811320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509811380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509811440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509811500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509811560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509811620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509811680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509811740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509811800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509811860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509811920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509811980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509812040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509812100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509812160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509812220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509812280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509812340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509812400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509812460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509812520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509812580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509812640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509812700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509812760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509812820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509812880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509812940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509813000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509813060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509813120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509813180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509813240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509813300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509813360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509813420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509813480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509813540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509813600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509813660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509813720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509813780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509813840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509813900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509813960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509814020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509814080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509814140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509814200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509814260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509814320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509814380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509814440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509814500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509814560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509814620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509814680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509814740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509814800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509814860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509814920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509814980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509815040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509815100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509815160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509815220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509815280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509815340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509815400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509815460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509815520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509815580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509815640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509815700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509815760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509815820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509815880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509815940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509816000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509816060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509816120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509816180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509816240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509816300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509816360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509816420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509816480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509816540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509816600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509816660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509816720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509816780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509816840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509816900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509816960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509817020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509817080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509817140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509817200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509817260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509817320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509817380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509817440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509817500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509817560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509817620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509817680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509817740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509817800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509817860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509817920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509817980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509818040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509818100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509818160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509818220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509818280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509818340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509818400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509818460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509818520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509818580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509818640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509818700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509818760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509818820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509818880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509818940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509819000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509819060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509819120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509819180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509819240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509819300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509819360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509819420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509819480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509819540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509819600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509819660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509819720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509819780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509819840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509819900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509819960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509820020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509820080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509820140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509820200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509820260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509820320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509820380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509820440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509820500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509820560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509820620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509820680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509820740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509820800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509820860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509820920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509820980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509821040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509821100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509821160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509821220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509821280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509821340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509821400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509821460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509821520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509821580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509821640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509821700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509821760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509821820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509821880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509821940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509822000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509822060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509822120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509822180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509822240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509822300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509822360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509822420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509822480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509822540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509822600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509822660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509822720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509822780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509822840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509822900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509822960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509823020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509823080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509823140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509823200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509823260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509823320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509823380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509823440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509823500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509823560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509823620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509823680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509823740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509823800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509823860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509823920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509823980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509824040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509824100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509824160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509824220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509824280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509824340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509824400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509824460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509824520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509824580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509824640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509824700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509824760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509824820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509824880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509824940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509825000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509825060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509825120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509825180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509825240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509825300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509825360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509825420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509825480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509825540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509825600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509825660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509825720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509825780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509825840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509825900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509825960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509826020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509826080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509826140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509826200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509826260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509826320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509826380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509826440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509826500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509826560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509826620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509826680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509826740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509826800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509826860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509826920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509826980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509827040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509827100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509827160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509827220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509827280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509827340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509827400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509827460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509827520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509827580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509827640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509827700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509827760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509827820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509827880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509827940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509828000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509828060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509828120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509828180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509828240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509828300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509828360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509828420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509828480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509828540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509828600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509828660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509828720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509828780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509828840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509828900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509828960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509829020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509829080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509829140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509829200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509829260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509829320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509829380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509829440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509829500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509829560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509829620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509829680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509829740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509829800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509829860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509829920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509829980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509830040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509830100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509830160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509830220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509830280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509830340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509830400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509830460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509830520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509830580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509830640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509830700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509830760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509830820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509830880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509830940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509831000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509831060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509831120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509831180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509831240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509831300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509831360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509831420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509831480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509831540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509831600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509831660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509831720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509831780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509831840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509831900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509831960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509832020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509832080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509832140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509832200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509832260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509832320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509832380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509832440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509832500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509832560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509832620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509832680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509832740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509832800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509832860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509832920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509832980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509833040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509833100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509833160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509833220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509833280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509833340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509833400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509833460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509833520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509833580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509833640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509833700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509833760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509833820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509833880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509833940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509834000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509834060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509834120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509834180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509834240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509834300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509834360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509834420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509834480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509834540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509834600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509834660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509834720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509834780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509834840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509834900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509834960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509835020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509835080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509835140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509835200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509835260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509835320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509835380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509835440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509835500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509835560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509835620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509835680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509835740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509835800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509835860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509835920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509835980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509836040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509836100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509836160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509836220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509836280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509836340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509836400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509836460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509836520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509836580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509836640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509836700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509836760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509836820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509836880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509836940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509837000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509837060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509837120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509837180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509837240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509837300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509837360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509837420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509837480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509837540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509837600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509837660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509837720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509837780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509837840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509837900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509837960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509838020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509838080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509838140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509838200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509838260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509838320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509838380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509838440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509838500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509838560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509838620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509838680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509838740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509838800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509838860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509838920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509838980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509839040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509839100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509839160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509839220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509839280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509839340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509839400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509839460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509839520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509839580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509839640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509839700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509839760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509839820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509839880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509839940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509840000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509840060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509840120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509840180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509840240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509840300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509840360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509840420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509840480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509840540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509840600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509840660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509840720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509840780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509840840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509840900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509840960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509841020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509841080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509841140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509841200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509841260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509841320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509841380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509841440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509841500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509841560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509841620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509841680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509841740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509841800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509841860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509841920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509841980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509842040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509842100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509842160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509842220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509842280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509842340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509842400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509842460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509842520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509842580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509842640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509842700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509842760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509842820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509842880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509842940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509843000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509843060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509843120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509843180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509843240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509843300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509843360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509843420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509843480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509843540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509843600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509843660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509843720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509843780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509843840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509843900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509843960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509844020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509844080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509844140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509844200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509844260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509844320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509844380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509844440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509844500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509844560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509844620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509844680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509844740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509844800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509844860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509844920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509844980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509845040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509845100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509845160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509845220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509845280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509845340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509845400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509845460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509845520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509845580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509845640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509845700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509845760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509845820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509845880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509845940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509846000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509846060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509846120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509846180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509846240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509846300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509846360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509846420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509846480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509846540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509846600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509846660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509846720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509846780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509846840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509846900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509846960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509847020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509847080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509847140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509847200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509847260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509847320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509847380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509847440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509847500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509847560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509847620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509847680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509847740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509847800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509847860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509847920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509847980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509848040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509848100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509848160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509848220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509848280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509848340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509848400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509848460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509848520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509848580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509848640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509848700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509848760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509848820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509848880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509848940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509849000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509849060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509849120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509849180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509849240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509849300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509849360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509849420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509849480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509849540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509849600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509849660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509849720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509849780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509849840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509849900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509849960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509850020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509850080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509850140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509850200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509850260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509850320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509850380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509850440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509850500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509850560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509850620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509850680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509850740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509850800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509850860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509850920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509850980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509851040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509851100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509851160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509851220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509851280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509851340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509851400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509851460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509851520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509851580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509851640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509851700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509851760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509851820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509851880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509851940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509852000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509852060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509852120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509852180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509852240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509852300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509852360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509852420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509852480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509852540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509852600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509852660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509852720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509852780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509852840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509852900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509852960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509853020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509853080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509853140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509853200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509853260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509853320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509853380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509853440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509853500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509853560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509853620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509853680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509853740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509853800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509853860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509853920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509853980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509854040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509854100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509854160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509854220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509854280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509854340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509854400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509854460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509854520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509854580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509854640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509854700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509854760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509854820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509854880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509854940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509855000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509855060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509855120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509855180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509855240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509855300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509855360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509855420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509855480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509855540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509855600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509855660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509855720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509855780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509855840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509855900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509855960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509856020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509856080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509856140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509856200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509856260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509856320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509856380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509856440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509856500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509856560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509856620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509856680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509856740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509856800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509856860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509856920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509856980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509857040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509857100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509857160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509857220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509857280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509857340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509857400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509857460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509857520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509857580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509857640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509857700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509857760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509857820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509857880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509857940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509858000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509858060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509858120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509858180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509858240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509858300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509858360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509858420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509858480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509858540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509858600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509858660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509858720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509858780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509858840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509858900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509858960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509859020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509859080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509859140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509859200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509859260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509859320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509859380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509859440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509859500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509859560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509859620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509859680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509859740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509859800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509859860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509859920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509859980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509860040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509860100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509860160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509860220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509860280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509860340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509860400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509860460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509860520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509860580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509860640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509860700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509860760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509860820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509860880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509860940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509861000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509861060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509861120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509861180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509861240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509861300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509861360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509861420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509861480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509861540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509861600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509861660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509861720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509861780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509861840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509861900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509861960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509862020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509862080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509862140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509862200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509862260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509862320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509862380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509862440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509862500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509862560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509862620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509862680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509862740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509862800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509862860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509862920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509862980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509863040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509863100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509863160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509863220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509863280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509863340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509863400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509863460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509863520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509863580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509863640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509863700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509863760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509863820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509863880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509863940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509864000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509864060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509864120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509864180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509864240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509864300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509864360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509864420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509864480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509864540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509864600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509864660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509864720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509864780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509864840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509864900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509864960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509865020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509865080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509865140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509865200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509865260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509865320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509865380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509865440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509865500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509865560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509865620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509865680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509865740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509865800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509865860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509865920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509865980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509866040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509866100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509866160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509866220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509866280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509866340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509866400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509866460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509866520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509866580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509866640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509866700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509866760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509866820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509866880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509866940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509867000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509867060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509867120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509867180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509867240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509867300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509867360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509867420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509867480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509867540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509867600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509867660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509867720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509867780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509867840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509867900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509867960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509868020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509868080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509868140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509868200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509868260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509868320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509868380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509868440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509868500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509868560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509868620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509868680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509868740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509868800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509868860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509868920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509868980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509869040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509869100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509869160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509869220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509869280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509869340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509869400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509869460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509869520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509869580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509869640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509869700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509869760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509869820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509869880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509869940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509870000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509870060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509870120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509870180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509870240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509870300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509870360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509870420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509870480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509870540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509870600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509870660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509870720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509870780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509870840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509870900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509870960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509871020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509871080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509871140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509871200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509871260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509871320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509871380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509871440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509871500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509871560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509871620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509871680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509871740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509871800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509871860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509871920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509871980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509872040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509872100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509872160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509872220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509872280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509872340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509872400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509872460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509872520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509872580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509872640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509872700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509872760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509872820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509872880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509872940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509873000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509873060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509873120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509873180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509873240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509873300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509873360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509873420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509873480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509873540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509873600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509873660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509873720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509873780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509873840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509873900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509873960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509874020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509874080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509874140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509874200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509874260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509874320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509874380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509874440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509874500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509874560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509874620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509874680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509874740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509874800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509874860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509874920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509874980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509875040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509875100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509875160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509875220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509875280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509875340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509875400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509875460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509875520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509875580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509875640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509875700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509875760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509875820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509875880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509875940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509876000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509876060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509876120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509876180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509876240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509876300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509876360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509876420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509876480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509876540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509876600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509876660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509876720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509876780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509876840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509876900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509876960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509877020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509877080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509877140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509877200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509877260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509877320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509877380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509877440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509877500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509877560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509877620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509877680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509877740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509877800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509877860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509877920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509877980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509878040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509878100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509878160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509878220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509878280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509878340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509878400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509878460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509878520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509878580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509878640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509878700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509878760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509878820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509878880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509878940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509879000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509879060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509879120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509879180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509879240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509879300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509879360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509879420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509879480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509879540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509879600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509879660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509879720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509879780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509879840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509879900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509879960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509880020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509880080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509880140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509880200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509880260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509880320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509880380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509880440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509880500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509880560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509880620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509880680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509880740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509880800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509880860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509880920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509880980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509881040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509881100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509881160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509881220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509881280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509881340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509881400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509881460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509881520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509881580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509881640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509881700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509881760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509881820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509881880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509881940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509882000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509882060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509882120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509882180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509882240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509882300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509882360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509882420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509882480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509882540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509882600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509882660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509882720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509882780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509882840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509882900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509882960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509883020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509883080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509883140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509883200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509883260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509883320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509883380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509883440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509883500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509883560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509883620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509883680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509883740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509883800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509883860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509883920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509883980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509884040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509884100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509884160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509884220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509884280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509884340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509884400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509884460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509884520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509884580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509884640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509884700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509884760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509884820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509884880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509884940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509885000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509885060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509885120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509885180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509885240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509885300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509885360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509885420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509885480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509885540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509885600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509885660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509885720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509885780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509885840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509885900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509885960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509886020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509886080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509886140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509886200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509886260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509886320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509886380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509886440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509886500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509886560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509886620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509886680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509886740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509886800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509886860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509886920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509886980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509887040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509887100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509887160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509887220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509887280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509887340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509887400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509887460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509887520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509887580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509887640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509887700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509887760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509887820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509887880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509887940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509888000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509888060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509888120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509888180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509888240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509888300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509888360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509888420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509888480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509888540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509888600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509888660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509888720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509888780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509888840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509888900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509888960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509889020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509889080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509889140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509889200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509889260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509889320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509889380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509889440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509889500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509889560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509889620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509889680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509889740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509889800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509889860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509889920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509889980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509890040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509890100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509890160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509890220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509890280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509890340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509890400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509890460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509890520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509890580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509890640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509890700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509890760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509890820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509890880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509890940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509891000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509891060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509891120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509891180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509891240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509891300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509891360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509891420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509891480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509891540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509891600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509891660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509891720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509891780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509891840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509891900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509891960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509892020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509892080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509892140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509892200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509892260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509892320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509892380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509892440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509892500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509892560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509892620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509892680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509892740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509892800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509892860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509892920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509892980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509893040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509893100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509893160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509893220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509893280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509893340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509893400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509893460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509893520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509893580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509893640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509893700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509893760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509893820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509893880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509893940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509894000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509894060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509894120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509894180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509894240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509894300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509894360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509894420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509894480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509894540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509894600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509894660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509894720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509894780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509894840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509894900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509894960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509895020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509895080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509895140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509895200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509895260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509895320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509895380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509895440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509895500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509895560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509895620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509895680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509895740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509895800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509895860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509895920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509895980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509896040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509896100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509896160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509896220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509896280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509896340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509896400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509896460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509896520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509896580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509896640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509896700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509896760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509896820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509896880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509896940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509897000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509897060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509897120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509897180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509897240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509897300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509897360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509897420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509897480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509897540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509897600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509897660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509897720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509897780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509897840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509897900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509897960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509898020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509898080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509898140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509898200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509898260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509898320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509898380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509898440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509898500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509898560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509898620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509898680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509898740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509898800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509898860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509898920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509898980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509899040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509899100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509899160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509899220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509899280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509899340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509899400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509899460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509899520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509899580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509899640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509899700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509899760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509899820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509899880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509899940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509900000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509900060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509900120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509900180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509900240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509900300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509900360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509900420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509900480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509900540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509900600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509900660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509900720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509900780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509900840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509900900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509900960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509901020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509901080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509901140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509901200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509901260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509901320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509901380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509901440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509901500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509901560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509901620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509901680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509901740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509901800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509901860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509901920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509901980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509902040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509902100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509902160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509902220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509902280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509902340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509902400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509902460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509902520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509902580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509902640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509902700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509902760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509902820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509902880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509902940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509903000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509903060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509903120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509903180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509903240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509903300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509903360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509903420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509903480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509903540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509903600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509903660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509903720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509903780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509903840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509903900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509903960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509904020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509904080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509904140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509904200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509904260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509904320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509904380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509904440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509904500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509904560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509904620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509904680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509904740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509904800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509904860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509904920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509904980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509905040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509905100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509905160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509905220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509905280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509905340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509905400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509905460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509905520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509905580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509905640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509905700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509905760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509905820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509905880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509905940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509906000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509906060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509906120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509906180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509906240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509906300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509906360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509906420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509906480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509906540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509906600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509906660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509906720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509906780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509906840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509906900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509906960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509907020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509907080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509907140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509907200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509907260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509907320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509907380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509907440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509907500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509907560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509907620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509907680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509907740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509907800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509907860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509907920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509907980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509908040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509908100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509908160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509908220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509908280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509908340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509908400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509908460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509908520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509908580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509908640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509908700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509908760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509908820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509908880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509908940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509909000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509909060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509909120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509909180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509909240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509909300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509909360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509909420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509909480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509909540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509909600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509909660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509909720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509909780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509909840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509909900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509909960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509910020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509910080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509910140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509910200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509910260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509910320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509910380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509910440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509910500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509910560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509910620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509910680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509910740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509910800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509910860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509910920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509910980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509911040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509911100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509911160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509911220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509911280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509911340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509911400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509911460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509911520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509911580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509911640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509911700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509911760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509911820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509911880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509911940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509912000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509912060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509912120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509912180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509912240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509912300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509912360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509912420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509912480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509912540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509912600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509912660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509912720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509912780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509912840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509912900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509912960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509913020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509913080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509913140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509913200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509913260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509913320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509913380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509913440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509913500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509913560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509913620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509913680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509913740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509913800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509913860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509913920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509913980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509914040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509914100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509914160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509914220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509914280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509914340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509914400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509914460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509914520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509914580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509914640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509914700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509914760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509914820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509914880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509914940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509915000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509915060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509915120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509915180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509915240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509915300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509915360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509915420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509915480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509915540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509915600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509915660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509915720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509915780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509915840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509915900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509915960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509916020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509916080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509916140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509916200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509916260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509916320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509916380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509916440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509916500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509916560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509916620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509916680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509916740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509916800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509916860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509916920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509916980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509917040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509917100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509917160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509917220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509917280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509917340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509917400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509917460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509917520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509917580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509917640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509917700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509917760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509917820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509917880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509917940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509918000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509918060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509918120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509918180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509918240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509918300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509918360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509918420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509918480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509918540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509918600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509918660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509918720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509918780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509918840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509918900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509918960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509919020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509919080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509919140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509919200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509919260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509919320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509919380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509919440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509919500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509919560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509919620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509919680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509919740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509919800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509919860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509919920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509919980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509920040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509920100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509920160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509920220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509920280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509920340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509920400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509920460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509920520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509920580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509920640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509920700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509920760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509920820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509920880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509920940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509921000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509921060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509921120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509921180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509921240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509921300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509921360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509921420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509921480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509921540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509921600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509921660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509921720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509921780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509921840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509921900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509921960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509922020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509922080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509922140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509922200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509922260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509922320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509922380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509922440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509922500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509922560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509922620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509922680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509922740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509922800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509922860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509922920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509922980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509923040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509923100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509923160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509923220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509923280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509923340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509923400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509923460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509923520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509923580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509923640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509923700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509923760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509923820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509923880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509923940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509924000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509924060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509924120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509924180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509924240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509924300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509924360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509924420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509924480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509924540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509924600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509924660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509924720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509924780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509924840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509924900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509924960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509925020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509925080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509925140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509925200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509925260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509925320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509925380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509925440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509925500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509925560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509925620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509925680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509925740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509925800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509925860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509925920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509925980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509926040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509926100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509926160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509926220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509926280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509926340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509926400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509926460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509926520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509926580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509926640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509926700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509926760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509926820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509926880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509926940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509927000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509927060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509927120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509927180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509927240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509927300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509927360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509927420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509927480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509927540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509927600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509927660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509927720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509927780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509927840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509927900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509927960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509928020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509928080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509928140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509928200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509928260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509928320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509928380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509928440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509928500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509928560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509928620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509928680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509928740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509928800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509928860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509928920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509928980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509929040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509929100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509929160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509929220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509929280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509929340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509929400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509929460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509929520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509929580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509929640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509929700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509929760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509929820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509929880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509929940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509930000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509930060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509930120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509930180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509930240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509930300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509930360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509930420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509930480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509930540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509930600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509930660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509930720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509930780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509930840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509930900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509930960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509931020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509931080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509931140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509931200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509931260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509931320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509931380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509931440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509931500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509931560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509931620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509931680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509931740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509931800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509931860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509931920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509931980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509932040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509932100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509932160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509932220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509932280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509932340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509932400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509932460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509932520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509932580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509932640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509932700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509932760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509932820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509932880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509932940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509933000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509933060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509933120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509933180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509933240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509933300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509933360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509933420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509933480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509933540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509933600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509933660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509933720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509933780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509933840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509933900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509933960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509934020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509934080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509934140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509934200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509934260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509934320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509934380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509934440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509934500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509934560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509934620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509934680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509934740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509934800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509934860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509934920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509934980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509935040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509935100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509935160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509935220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509935280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509935340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509935400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509935460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509935520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509935580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509935640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509935700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509935760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509935820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509935880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509935940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509936000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509936060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509936120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509936180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509936240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509936300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509936360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509936420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509936480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509936540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509936600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509936660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509936720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509936780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509936840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509936900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509936960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509937020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509937080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509937140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509937200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509937260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509937320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509937380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509937440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509937500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509937560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509937620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509937680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509937740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509937800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509937860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509937920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509937980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509938040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509938100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509938160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509938220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509938280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509938340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509938400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509938460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509938520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509938580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509938640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509938700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509938760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509938820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509938880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509938940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509939000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509939060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509939120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509939180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509939240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509939300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509939360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509939420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509939480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509939540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509939600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509939660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509939720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509939780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509939840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509939900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509939960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509940020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509940080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509940140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509940200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509940260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509940320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509940380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509940440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509940500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509940560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509940620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509940680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509940740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509940800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509940860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509940920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509940980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509941040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509941100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509941160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509941220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509941280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509941340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509941400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509941460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509941520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509941580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509941640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509941700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509941760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509941820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509941880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509941940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509942000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509942060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509942120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509942180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509942240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509942300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509942360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509942420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509942480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509942540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509942600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509942660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509942720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509942780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509942840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509942900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509942960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509943020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509943080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509943140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509943200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509943260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509943320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509943380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509943440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509943500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509943560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509943620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509943680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509943740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509943800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509943860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509943920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509943980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509944040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509944100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509944160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509944220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509944280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509944340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509944400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509944460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509944520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509944580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509944640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509944700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509944760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509944820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509944880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509944940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509945000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509945060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509945120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509945180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509945240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509945300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509945360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509945420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509945480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509945540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509945600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509945660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509945720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509945780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509945840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509945900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509945960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509946020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509946080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509946140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509946200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509946260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509946320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509946380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509946440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509946500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509946560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509946620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509946680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509946740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509946800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509946860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509946920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509946980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509947040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509947100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509947160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509947220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509947280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509947340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509947400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509947460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509947520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509947580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509947640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509947700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509947760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509947820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509947880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509947940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509948000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509948060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509948120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509948180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509948240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509948300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509948360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509948420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509948480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509948540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509948600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509948660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509948720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509948780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509948840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509948900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509948960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509949020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509949080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509949140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509949200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509949260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509949320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509949380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509949440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509949500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509949560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509949620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509949680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509949740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509949800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509949860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509949920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509949980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509950040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509950100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509950160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509950220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509950280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509950340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509950400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509950460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509950520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509950580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509950640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509950700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509950760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509950820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509950880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509950940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509951000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509951060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509951120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509951180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509951240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509951300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509951360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509951420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509951480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509951540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509951600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509951660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509951720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509951780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509951840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509951900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509951960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509952020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509952080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509952140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509952200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509952260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509952320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509952380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509952440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509952500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509952560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509952620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509952680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509952740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509952800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509952860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509952920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509952980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509953040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509953100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509953160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509953220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509953280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509953340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509953400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509953460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509953520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509953580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509953640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509953700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509953760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509953820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509953880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509953940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509954000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509954060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509954120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509954180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509954240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509954300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509954360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509954420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509954480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509954540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509954600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509954660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509954720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509954780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509954840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509954900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509954960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509955020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509955080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509955140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509955200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509955260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509955320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509955380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509955440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509955500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509955560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509955620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509955680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509955740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509955800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509955860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509955920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509955980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509956040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509956100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509956160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509956220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509956280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509956340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509956400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509956460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509956520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509956580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509956640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509956700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509956760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509956820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509956880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509956940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509957000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509957060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509957120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509957180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509957240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509957300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509957360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509957420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509957480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509957540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509957600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509957660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509957720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509957780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509957840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509957900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509957960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509958020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509958080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509958140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509958200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509958260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509958320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509958380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509958440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509958500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509958560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509958620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509958680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509958740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509958800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509958860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509958920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509958980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509959040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509959100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509959160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509959220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509959280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509959340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509959400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509959460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509959520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509959580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509959640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509959700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509959760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509959820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509959880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509959940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509960000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509960060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509960120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509960180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509960240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509960300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509960360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509960420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509960480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509960540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509960600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509960660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509960720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509960780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509960840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509960900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509960960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509961020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509961080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509961140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509961200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509961260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509961320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509961380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509961440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509961500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509961560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509961620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509961680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509961740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509961800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509961860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509961920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509961980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509962040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509962100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509962160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509962220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509962280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509962340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509962400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509962460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509962520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509962580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509962640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509962700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509962760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509962820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509962880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509962940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509963000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509963060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509963120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509963180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509963240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509963300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509963360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509963420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509963480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509963540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509963600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509963660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509963720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509963780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509963840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509963900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509963960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509964020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509964080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509964140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509964200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509964260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509964320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509964380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509964440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509964500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509964560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509964620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509964680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509964740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509964800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509964860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509964920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509964980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509965040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509965100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509965160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509965220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509965280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509965340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509965400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509965460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509965520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509965580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509965640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509965700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509965760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509965820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509965880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509965940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509966000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509966060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509966120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509966180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509966240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509966300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509966360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509966420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509966480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509966540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509966600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509966660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509966720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509966780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509966840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509966900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509966960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509967020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509967080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509967140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509967200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509967260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509967320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509967380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509967440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509967500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509967560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509967620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509967680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509967740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509967800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509967860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509967920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509967980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509968040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509968100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509968160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509968220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509968280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509968340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509968400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509968460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509968520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509968580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509968640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509968700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509968760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509968820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509968880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509968940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509969000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509969060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509969120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509969180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509969240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509969300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509969360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509969420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509969480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509969540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509969600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509969660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509969720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509969780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509969840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509969900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509969960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509970020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509970080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509970140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509970200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509970260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509970320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509970380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509970440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509970500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509970560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509970620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509970680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509970740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509970800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509970860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509970920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509970980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509971040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509971100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509971160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509971220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509971280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509971340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509971400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509971460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509971520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509971580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509971640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509971700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509971760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509971820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509971880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509971940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509972000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509972060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509972120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509972180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509972240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509972300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509972360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509972420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509972480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509972540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509972600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509972660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509972720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509972780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509972840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509972900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509972960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509973020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509973080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509973140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509973200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509973260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509973320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509973380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509973440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509973500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509973560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509973620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509973680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509973740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509973800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509973860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509973920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509973980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509974040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509974100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509974160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509974220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509974280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509974340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509974400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509974460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509974520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509974580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509974640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509974700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509974760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509974820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509974880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509974940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509975000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509975060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509975120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509975180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509975240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509975300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509975360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509975420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509975480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509975540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509975600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509975660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509975720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509975780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509975840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509975900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509975960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509976020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509976080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509976140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509976200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509976260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509976320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509976380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509976440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509976500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509976560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509976620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509976680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509976740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509976800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509976860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509976920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509976980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509977040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509977100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509977160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509977220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509977280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509977340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509977400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509977460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509977520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509977580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509977640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509977700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509977760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509977820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509977880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509977940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509978000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509978060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509978120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509978180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509978240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509978300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509978360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509978420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509978480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509978540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509978600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509978660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509978720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509978780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509978840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509978900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509978960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509979020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509979080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509979140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509979200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509979260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509979320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509979380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509979440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509979500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509979560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509979620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509979680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509979740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509979800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509979860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509979920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509979980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509980040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509980100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509980160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509980220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509980280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509980340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509980400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509980460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509980520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509980580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509980640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509980700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509980760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509980820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509980880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509980940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509981000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509981060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509981120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509981180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509981240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509981300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509981360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509981420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509981480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509981540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509981600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509981660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509981720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509981780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509981840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509981900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509981960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509982020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509982080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509982140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509982200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509982260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509982320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509982380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509982440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509982500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509982560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509982620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509982680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509982740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509982800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509982860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509982920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509982980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509983040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509983100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509983160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509983220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509983280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509983340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509983400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509983460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509983520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509983580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509983640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509983700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509983760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509983820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509983880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509983940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509984000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509984060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509984120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509984180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509984240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509984300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509984360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509984420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509984480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509984540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509984600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509984660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509984720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509984780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509984840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509984900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509984960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509985020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509985080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509985140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509985200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509985260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509985320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509985380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509985440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509985500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509985560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509985620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509985680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509985740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509985800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509985860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509985920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509985980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509986040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509986100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509986160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509986220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509986280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509986340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509986400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509986460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509986520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509986580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509986640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509986700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509986760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509986820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509986880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509986940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509987000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509987060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509987120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509987180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509987240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509987300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509987360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509987420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509987480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509987540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509987600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509987660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509987720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509987780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509987840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509987900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509987960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509988020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509988080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509988140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509988200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509988260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509988320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509988380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509988440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509988500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509988560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509988620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509988680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509988740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509988800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509988860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509988920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509988980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509989040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509989100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509989160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509989220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509989280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509989340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509989400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509989460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509989520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509989580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509989640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509989700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509989760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509989820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509989880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509989940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509990000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509990060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509990120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509990180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509990240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509990300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509990360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509990420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509990480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509990540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509990600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509990660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509990720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509990780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509990840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509990900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509990960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509991020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509991080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509991140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509991200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509991260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509991320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509991380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509991440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509991500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509991560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509991620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509991680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509991740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509991800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509991860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509991920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509991980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509992040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509992100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509992160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509992220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509992280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509992340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509992400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509992460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509992520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509992580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509992640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509992700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509992760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509992820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509992880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509992940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509993000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509993060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509993120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509993180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509993240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509993300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509993360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509993420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509993480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509993540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509993600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509993660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509993720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509993780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509993840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509993900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509993960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509994020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509994080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509994140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509994200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509994260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509994320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509994380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509994440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509994500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509994560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509994620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509994680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509994740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509994800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509994860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509994920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509994980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509995040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509995100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509995160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509995220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509995280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509995340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509995400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509995460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509995520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509995580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509995640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509995700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509995760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509995820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509995880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509995940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509996000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509996060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509996120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509996180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509996240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509996300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509996360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509996420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509996480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509996540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509996600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509996660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509996720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509996780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509996840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509996900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509996960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509997020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509997080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509997140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509997200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509997260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509997320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509997380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509997440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509997500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509997560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509997620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509997680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509997740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509997800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509997860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509997920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509997980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509998040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509998100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509998160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509998220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509998280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509998340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509998400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509998460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509998520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509998580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509998640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509998700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509998760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509998820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509998880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509998940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509999000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509999060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509999120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509999180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509999240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509999300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509999360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509999420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509999480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509999540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509999600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509999660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509999720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509999780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509999840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509999900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1509999960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510000020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510000080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510000140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510000200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510000260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510000320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510000380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510000440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510000500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510000560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510000620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510000680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510000740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510000800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510000860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510000920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510000980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510001040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510001100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510001160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510001220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510001280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510001340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510001400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510001460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510001520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510001580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510001640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510001700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510001760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510001820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510001880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510001940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510002000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510002060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510002120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510002180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510002240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510002300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510002360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510002420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510002480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510002540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510002600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510002660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510002720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510002780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510002840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510002900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510002960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510003020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510003080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510003140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510003200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510003260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510003320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510003380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510003440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510003500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510003560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510003620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510003680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510003740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510003800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510003860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510003920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510003980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510004040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510004100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510004160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510004220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510004280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510004340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510004400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510004460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510004520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510004580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510004640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510004700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510004760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510004820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510004880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510004940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510005000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510005060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510005120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510005180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510005240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510005300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510005360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510005420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510005480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510005540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510005600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510005660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510005720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510005780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510005840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510005900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510005960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510006020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510006080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510006140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510006200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510006260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510006320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510006380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510006440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510006500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510006560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510006620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510006680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510006740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510006800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510006860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510006920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510006980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510007040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510007100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510007160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510007220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510007280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510007340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510007400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510007460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510007520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510007580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510007640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510007700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510007760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510007820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510007880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510007940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510008000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510008060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510008120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510008180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510008240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510008300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510008360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510008420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510008480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510008540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510008600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510008660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510008720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510008780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510008840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510008900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510008960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510009020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510009080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510009140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510009200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510009260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510009320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510009380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510009440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510009500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510009560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510009620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510009680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510009740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510009800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510009860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510009920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510009980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510010040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510010100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510010160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510010220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510010280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510010340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510010400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510010460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510010520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510010580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510010640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510010700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510010760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510010820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510010880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510010940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510011000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510011060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510011120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510011180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510011240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510011300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510011360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510011420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510011480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510011540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510011600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510011660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510011720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510011780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510011840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510011900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510011960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510012020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510012080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510012140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510012200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510012260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510012320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510012380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510012440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510012500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510012560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510012620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510012680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510012740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510012800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510012860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510012920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510012980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510013040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510013100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510013160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510013220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510013280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510013340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510013400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510013460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510013520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510013580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510013640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510013700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510013760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510013820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510013880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510013940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510014000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510014060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510014120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510014180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510014240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510014300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510014360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510014420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510014480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510014540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510014600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510014660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510014720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510014780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510014840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510014900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510014960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510015020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510015080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510015140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510015200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510015260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510015320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510015380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510015440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510015500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510015560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510015620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510015680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510015740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510015800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510015860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510015920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510015980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510016040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510016100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510016160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510016220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510016280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510016340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510016400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510016460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510016520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510016580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510016640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510016700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510016760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510016820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510016880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510016940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510017000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510017060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510017120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510017180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510017240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510017300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510017360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510017420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510017480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510017540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510017600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510017660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510017720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510017780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510017840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510017900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510017960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510018020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510018080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510018140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510018200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510018260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510018320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510018380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510018440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510018500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510018560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510018620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510018680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510018740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510018800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510018860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510018920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510018980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510019040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510019100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510019160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510019220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510019280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510019340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510019400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510019460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510019520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510019580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510019640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510019700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510019760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510019820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510019880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510019940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510020000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510020060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510020120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510020180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510020240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510020300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510020360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510020420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510020480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510020540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510020600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510020660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510020720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510020780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510020840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510020900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510020960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510021020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510021080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510021140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510021200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510021260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510021320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510021380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510021440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510021500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510021560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510021620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510021680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510021740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510021800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510021860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510021920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510021980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510022040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510022100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510022160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510022220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510022280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510022340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510022400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510022460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510022520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510022580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510022640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510022700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510022760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510022820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510022880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510022940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510023000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510023060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510023120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510023180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510023240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510023300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510023360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510023420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510023480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510023540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510023600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510023660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510023720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510023780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510023840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510023900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510023960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510024020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510024080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510024140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510024200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510024260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510024320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510024380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510024440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510024500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510024560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510024620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510024680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510024740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510024800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510024860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510024920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510024980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510025040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510025100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510025160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510025220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510025280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510025340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510025400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510025460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510025520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510025580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510025640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510025700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510025760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510025820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510025880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510025940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510026000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510026060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510026120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510026180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510026240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510026300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510026360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510026420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510026480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510026540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510026600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510026660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510026720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510026780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510026840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510026900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510026960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510027020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510027080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510027140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510027200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510027260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510027320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510027380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510027440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510027500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510027560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510027620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510027680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510027740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510027800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510027860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510027920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510027980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510028040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510028100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510028160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510028220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510028280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510028340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510028400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510028460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510028520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510028580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510028640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510028700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510028760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510028820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510028880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510028940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510029000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510029060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510029120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510029180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510029240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510029300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510029360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510029420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510029480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510029540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510029600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510029660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510029720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510029780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510029840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510029900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510029960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510030020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510030080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510030140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510030200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510030260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510030320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510030380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510030440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510030500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510030560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510030620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510030680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510030740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510030800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510030860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510030920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510030980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510031040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510031100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510031160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510031220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510031280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510031340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510031400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510031460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510031520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510031580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510031640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510031700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510031760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510031820000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510031880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510031940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510032000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510032060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510032120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510032180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510032240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510032300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510032360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510032420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510032480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510032540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510032600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510032660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510032720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510032780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510032840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510032900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510032960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510033020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510033080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510033140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510033200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510033260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510033320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510033380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510033440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510033500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510033560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510033620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510033680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510033740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510033800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510033860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510033920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510033980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510034040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510034100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510034160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510034220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510034280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510034340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510034400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510034460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510034520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510034580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510034640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510034700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510034760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510034820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510034880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510034940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510035000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510035060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510035120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510035180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510035240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510035300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510035360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510035420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510035480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510035540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510035600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510035660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510035720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510035780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510035840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510035900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510035960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510036020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510036080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510036140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510036200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510036260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510036320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510036380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510036440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510036500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510036560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510036620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510036680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510036740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510036800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510036860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510036920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510036980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510037040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510037100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510037160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510037220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510037280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510037340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510037400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510037460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510037520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510037580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510037640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510037700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510037760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510037820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510037880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510037940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510038000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510038060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510038120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510038180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510038240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510038300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510038360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510038420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510038480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510038540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510038600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510038660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510038720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510038780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510038840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510038900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510038960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510039020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510039080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510039140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510039200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510039260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510039320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510039380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510039440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510039500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510039560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510039620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510039680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510039740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510039800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510039860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510039920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510039980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510040040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510040100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510040160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510040220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510040280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510040340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510040400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510040460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510040520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510040580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510040640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510040700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510040760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510040820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510040880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510040940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510041000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510041060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510041120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510041180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510041240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510041300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510041360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510041420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510041480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510041540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510041600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510041660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510041720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510041780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510041840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510041900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510041960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510042020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510042080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510042140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510042200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510042260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510042320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510042380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510042440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510042500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510042560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510042620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510042680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510042740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510042800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510042860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510042920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510042980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510043040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510043100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510043160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510043220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510043280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510043340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510043400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510043460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510043520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510043580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510043640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510043700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510043760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510043820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510043880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510043940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510044000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510044060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510044120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510044180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510044240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510044300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510044360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510044420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510044480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510044540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510044600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510044660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510044720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510044780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510044840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510044900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510044960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510045020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510045080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510045140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510045200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510045260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510045320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510045380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510045440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510045500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510045560000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510045620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510045680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510045740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510045800000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510045860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510045920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510045980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510046040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510046100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510046160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510046220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510046280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510046340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510046400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510046460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510046520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510046580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510046640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510046700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510046760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510046820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510046880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510046940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510047000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510047060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510047120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510047180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510047240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510047300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510047360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510047420000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510047480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510047540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510047600000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510047660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510047720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510047780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510047840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510047900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510047960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510048020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510048080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510048140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510048200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510048260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510048320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510048380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510048440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510048500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510048560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510048620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510048680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510048740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510048800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510048860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510048920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510048980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510049040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510049100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510049160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510049220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510049280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510049340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510049400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510049460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510049520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510049580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510049640000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510049700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510049760000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510049820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510049880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510049940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510050000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510050060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510050120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510050180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510050240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510050300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510050360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510050420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510050480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510050540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510050600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510050660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510050720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510050780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510050840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510050900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510050960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510051020000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510051080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510051140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510051200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510051260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510051320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510051380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510051440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510051500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510051560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510051620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510051680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510051740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510051800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510051860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510051920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510051980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510052040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510052100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510052160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510052220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510052280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510052340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510052400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510052460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510052520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510052580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510052640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510052700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510052760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510052820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510052880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510052940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510053000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510053060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510053120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510053180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510053240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510053300000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510053360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510053420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510053480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510053540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510053600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510053660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510053720000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510053780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510053840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510053900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510053960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510054020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510054080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510054140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510054200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510054260000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510054320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510054380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510054440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510054500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510054560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510054620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510054680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510054740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510054800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510054860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510054920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510054980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510055040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510055100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510055160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510055220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510055280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510055340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510055400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510055460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510055520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510055580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510055640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510055700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510055760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510055820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510055880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510055940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510056000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510056060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510056120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510056180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510056240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510056300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510056360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510056420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510056480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510056540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510056600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510056660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510056720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510056780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510056840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510056900000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510056960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510057020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510057080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510057140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510057200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510057260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510057320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510057380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510057440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510057500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510057560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510057620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510057680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510057740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510057800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510057860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510057920000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510057980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510058040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510058100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510058160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510058220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510058280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510058340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510058400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510058460000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510058520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510058580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510058640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510058700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510058760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510058820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510058880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510058940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510059000000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510059060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510059120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510059180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510059240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510059300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510059360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510059420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510059480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510059540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510059600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510059660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510059720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510059780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510059840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510059900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510059960000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510060020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510060080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510060140000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510060200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510060260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510060320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510060380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510060440000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510060500000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510060560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510060620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510060680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510060740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510060800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510060860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510060920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510060980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510061040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510061100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510061160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510061220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510061280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510061340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510061400000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510061460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510061520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510061580000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510061640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510061700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510061760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510061820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510061880000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510061940000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510062000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510062060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510062120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510062180000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510062240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510062300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510062360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510062420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510062480000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510062540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510062600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510062660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510062720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510062780000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510062840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510062900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510062960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510063020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510063080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510063140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510063200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510063260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510063320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510063380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510063440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510063500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510063560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510063620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510063680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510063740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510063800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510063860000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510063920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510063980000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510064040000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510064100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510064160000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510064220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510064280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510064340000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510064400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510064460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510064520000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510064580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510064640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510064700000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510064760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510064820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510064880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510064940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510065000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510065060000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510065120000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510065180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510065240000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510065300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510065360000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510065420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510065480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510065540000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510065600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510065660000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510065720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510065780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510065840000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510065900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510065960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510066020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510066080000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510066140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510066200000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510066260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510066320000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510066380000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510066440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510066500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510066560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510066620000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510066680000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510066740000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510066800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510066860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510066920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510066980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510067040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510067100000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510067160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510067220000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510067280000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510067340000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510067400000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510067460000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510067520000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510067580000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510067640000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510067700000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510067760000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510067820000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510067880000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510067940000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510068000000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510068060000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510068120000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510068180000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510068240000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510068300000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510068360000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510068420000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510068480000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510068540000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510068600000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510068660000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510068720000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510068780000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510068840000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510068900000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510068960000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510069020000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510069080000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510069140000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510069200000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510069260000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510069320000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510069380000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510069440000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510069500000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510069560000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510069620000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510069680000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510069740000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510069800000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510069860000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510069920000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510069980000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510070040000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510070100000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510070160000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510070220000,"v2") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510070280000,"v1") +insert into root.ln.wf02.wt02(timestamp,hardware) values(1510070340000,"v1") +create timeseries root.ln.wf02.wt02.status with datatype=BOOLEAN,encoding=PLAIN +insert into root.ln.wf02.wt02(timestamp,status) values(1509465600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509465660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509465720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509465780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509465840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509465900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509465960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509466020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509466080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509466140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509466200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509466260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509466320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509466380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509466440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509466500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509466560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509466620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509466680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509466740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509466800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509466860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509466920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509466980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509467040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509467100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509467160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509467220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509467280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509467340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509467400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509467460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509467520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509467580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509467640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509467700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509467760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509467820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509467880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509467940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509468000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509468060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509468120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509468180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509468240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509468300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509468360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509468420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509468480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509468540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509468600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509468660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509468720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509468780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509468840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509468900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509468960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509469020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509469080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509469140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509469200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509469260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509469320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509469380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509469440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509469500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509469560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509469620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509469680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509469740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509469800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509469860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509469920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509469980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509470040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509470100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509470160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509470220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509470280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509470340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509470400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509470460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509470520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509470580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509470640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509470700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509470760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509470820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509470880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509470940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509471000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509471060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509471120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509471180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509471240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509471300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509471360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509471420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509471480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509471540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509471600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509471660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509471720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509471780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509471840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509471900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509471960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509472020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509472080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509472140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509472200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509472260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509472320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509472380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509472440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509472500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509472560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509472620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509472680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509472740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509472800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509472860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509472920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509472980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509473040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509473100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509473160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509473220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509473280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509473340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509473400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509473460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509473520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509473580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509473640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509473700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509473760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509473820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509473880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509473940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509474000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509474060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509474120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509474180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509474240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509474300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509474360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509474420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509474480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509474540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509474600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509474660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509474720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509474780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509474840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509474900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509474960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509475020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509475080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509475140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509475200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509475260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509475320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509475380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509475440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509475500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509475560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509475620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509475680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509475740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509475800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509475860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509475920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509475980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509476040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509476100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509476160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509476220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509476280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509476340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509476400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509476460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509476520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509476580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509476640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509476700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509476760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509476820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509476880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509476940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509477000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509477060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509477120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509477180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509477240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509477300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509477360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509477420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509477480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509477540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509477600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509477660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509477720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509477780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509477840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509477900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509477960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509478020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509478080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509478140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509478200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509478260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509478320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509478380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509478440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509478500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509478560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509478620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509478680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509478740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509478800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509478860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509478920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509478980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509479040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509479100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509479160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509479220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509479280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509479340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509479400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509479460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509479520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509479580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509479640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509479700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509479760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509479820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509479880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509479940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509480000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509480060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509480120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509480180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509480240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509480300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509480360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509480420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509480480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509480540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509480600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509480660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509480720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509480780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509480840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509480900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509480960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509481020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509481080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509481140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509481200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509481260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509481320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509481380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509481440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509481500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509481560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509481620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509481680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509481740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509481800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509481860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509481920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509481980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509482040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509482100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509482160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509482220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509482280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509482340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509482400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509482460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509482520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509482580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509482640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509482700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509482760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509482820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509482880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509482940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509483000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509483060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509483120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509483180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509483240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509483300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509483360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509483420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509483480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509483540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509483600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509483660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509483720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509483780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509483840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509483900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509483960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509484020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509484080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509484140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509484200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509484260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509484320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509484380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509484440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509484500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509484560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509484620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509484680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509484740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509484800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509484860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509484920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509484980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509485040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509485100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509485160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509485220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509485280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509485340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509485400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509485460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509485520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509485580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509485640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509485700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509485760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509485820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509485880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509485940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509486000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509486060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509486120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509486180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509486240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509486300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509486360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509486420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509486480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509486540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509486600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509486660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509486720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509486780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509486840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509486900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509486960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509487020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509487080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509487140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509487200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509487260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509487320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509487380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509487440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509487500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509487560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509487620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509487680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509487740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509487800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509487860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509487920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509487980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509488040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509488100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509488160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509488220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509488280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509488340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509488400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509488460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509488520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509488580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509488640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509488700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509488760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509488820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509488880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509488940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509489000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509489060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509489120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509489180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509489240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509489300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509489360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509489420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509489480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509489540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509489600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509489660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509489720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509489780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509489840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509489900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509489960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509490020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509490080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509490140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509490200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509490260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509490320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509490380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509490440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509490500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509490560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509490620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509490680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509490740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509490800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509490860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509490920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509490980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509491040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509491100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509491160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509491220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509491280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509491340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509491400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509491460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509491520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509491580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509491640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509491700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509491760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509491820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509491880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509491940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509492000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509492060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509492120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509492180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509492240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509492300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509492360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509492420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509492480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509492540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509492600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509492660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509492720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509492780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509492840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509492900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509492960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509493020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509493080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509493140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509493200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509493260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509493320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509493380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509493440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509493500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509493560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509493620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509493680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509493740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509493800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509493860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509493920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509493980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509494040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509494100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509494160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509494220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509494280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509494340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509494400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509494460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509494520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509494580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509494640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509494700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509494760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509494820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509494880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509494940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509495000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509495060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509495120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509495180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509495240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509495300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509495360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509495420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509495480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509495540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509495600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509495660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509495720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509495780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509495840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509495900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509495960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509496020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509496080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509496140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509496200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509496260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509496320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509496380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509496440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509496500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509496560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509496620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509496680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509496740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509496800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509496860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509496920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509496980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509497040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509497100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509497160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509497220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509497280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509497340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509497400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509497460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509497520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509497580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509497640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509497700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509497760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509497820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509497880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509497940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509498000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509498060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509498120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509498180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509498240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509498300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509498360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509498420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509498480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509498540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509498600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509498660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509498720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509498780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509498840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509498900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509498960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509499020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509499080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509499140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509499200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509499260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509499320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509499380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509499440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509499500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509499560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509499620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509499680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509499740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509499800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509499860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509499920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509499980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509500040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509500100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509500160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509500220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509500280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509500340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509500400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509500460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509500520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509500580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509500640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509500700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509500760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509500820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509500880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509500940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509501000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509501060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509501120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509501180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509501240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509501300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509501360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509501420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509501480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509501540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509501600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509501660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509501720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509501780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509501840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509501900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509501960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509502020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509502080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509502140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509502200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509502260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509502320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509502380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509502440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509502500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509502560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509502620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509502680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509502740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509502800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509502860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509502920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509502980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509503040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509503100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509503160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509503220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509503280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509503340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509503400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509503460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509503520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509503580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509503640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509503700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509503760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509503820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509503880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509503940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509504000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509504060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509504120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509504180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509504240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509504300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509504360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509504420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509504480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509504540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509504600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509504660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509504720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509504780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509504840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509504900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509504960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509505020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509505080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509505140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509505200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509505260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509505320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509505380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509505440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509505500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509505560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509505620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509505680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509505740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509505800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509505860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509505920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509505980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509506040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509506100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509506160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509506220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509506280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509506340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509506400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509506460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509506520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509506580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509506640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509506700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509506760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509506820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509506880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509506940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509507000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509507060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509507120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509507180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509507240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509507300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509507360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509507420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509507480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509507540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509507600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509507660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509507720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509507780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509507840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509507900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509507960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509508020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509508080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509508140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509508200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509508260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509508320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509508380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509508440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509508500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509508560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509508620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509508680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509508740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509508800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509508860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509508920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509508980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509509040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509509100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509509160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509509220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509509280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509509340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509509400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509509460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509509520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509509580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509509640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509509700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509509760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509509820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509509880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509509940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509510000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509510060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509510120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509510180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509510240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509510300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509510360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509510420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509510480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509510540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509510600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509510660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509510720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509510780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509510840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509510900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509510960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509511020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509511080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509511140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509511200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509511260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509511320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509511380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509511440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509511500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509511560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509511620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509511680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509511740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509511800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509511860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509511920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509511980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509512040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509512100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509512160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509512220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509512280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509512340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509512400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509512460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509512520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509512580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509512640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509512700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509512760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509512820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509512880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509512940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509513000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509513060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509513120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509513180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509513240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509513300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509513360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509513420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509513480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509513540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509513600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509513660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509513720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509513780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509513840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509513900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509513960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509514020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509514080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509514140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509514200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509514260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509514320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509514380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509514440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509514500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509514560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509514620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509514680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509514740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509514800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509514860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509514920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509514980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509515040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509515100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509515160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509515220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509515280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509515340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509515400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509515460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509515520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509515580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509515640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509515700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509515760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509515820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509515880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509515940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509516000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509516060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509516120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509516180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509516240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509516300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509516360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509516420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509516480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509516540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509516600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509516660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509516720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509516780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509516840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509516900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509516960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509517020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509517080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509517140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509517200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509517260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509517320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509517380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509517440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509517500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509517560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509517620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509517680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509517740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509517800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509517860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509517920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509517980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509518040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509518100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509518160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509518220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509518280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509518340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509518400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509518460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509518520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509518580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509518640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509518700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509518760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509518820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509518880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509518940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509519000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509519060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509519120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509519180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509519240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509519300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509519360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509519420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509519480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509519540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509519600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509519660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509519720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509519780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509519840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509519900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509519960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509520020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509520080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509520140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509520200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509520260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509520320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509520380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509520440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509520500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509520560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509520620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509520680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509520740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509520800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509520860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509520920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509520980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509521040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509521100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509521160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509521220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509521280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509521340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509521400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509521460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509521520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509521580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509521640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509521700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509521760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509521820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509521880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509521940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509522000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509522060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509522120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509522180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509522240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509522300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509522360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509522420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509522480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509522540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509522600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509522660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509522720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509522780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509522840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509522900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509522960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509523020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509523080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509523140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509523200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509523260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509523320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509523380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509523440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509523500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509523560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509523620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509523680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509523740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509523800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509523860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509523920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509523980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509524040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509524100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509524160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509524220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509524280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509524340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509524400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509524460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509524520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509524580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509524640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509524700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509524760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509524820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509524880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509524940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509525000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509525060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509525120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509525180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509525240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509525300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509525360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509525420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509525480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509525540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509525600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509525660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509525720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509525780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509525840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509525900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509525960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509526020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509526080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509526140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509526200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509526260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509526320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509526380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509526440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509526500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509526560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509526620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509526680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509526740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509526800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509526860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509526920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509526980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509527040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509527100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509527160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509527220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509527280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509527340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509527400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509527460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509527520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509527580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509527640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509527700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509527760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509527820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509527880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509527940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509528000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509528060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509528120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509528180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509528240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509528300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509528360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509528420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509528480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509528540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509528600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509528660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509528720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509528780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509528840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509528900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509528960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509529020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509529080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509529140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509529200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509529260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509529320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509529380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509529440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509529500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509529560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509529620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509529680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509529740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509529800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509529860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509529920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509529980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509530040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509530100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509530160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509530220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509530280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509530340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509530400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509530460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509530520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509530580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509530640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509530700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509530760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509530820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509530880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509530940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509531000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509531060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509531120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509531180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509531240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509531300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509531360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509531420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509531480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509531540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509531600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509531660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509531720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509531780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509531840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509531900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509531960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509532020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509532080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509532140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509532200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509532260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509532320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509532380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509532440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509532500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509532560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509532620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509532680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509532740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509532800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509532860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509532920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509532980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509533040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509533100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509533160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509533220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509533280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509533340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509533400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509533460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509533520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509533580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509533640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509533700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509533760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509533820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509533880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509533940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509534000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509534060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509534120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509534180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509534240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509534300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509534360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509534420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509534480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509534540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509534600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509534660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509534720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509534780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509534840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509534900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509534960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509535020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509535080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509535140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509535200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509535260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509535320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509535380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509535440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509535500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509535560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509535620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509535680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509535740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509535800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509535860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509535920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509535980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509536040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509536100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509536160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509536220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509536280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509536340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509536400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509536460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509536520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509536580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509536640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509536700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509536760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509536820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509536880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509536940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509537000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509537060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509537120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509537180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509537240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509537300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509537360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509537420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509537480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509537540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509537600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509537660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509537720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509537780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509537840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509537900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509537960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509538020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509538080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509538140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509538200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509538260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509538320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509538380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509538440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509538500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509538560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509538620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509538680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509538740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509538800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509538860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509538920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509538980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509539040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509539100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509539160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509539220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509539280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509539340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509539400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509539460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509539520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509539580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509539640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509539700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509539760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509539820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509539880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509539940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509540000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509540060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509540120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509540180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509540240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509540300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509540360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509540420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509540480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509540540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509540600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509540660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509540720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509540780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509540840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509540900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509540960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509541020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509541080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509541140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509541200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509541260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509541320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509541380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509541440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509541500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509541560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509541620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509541680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509541740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509541800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509541860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509541920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509541980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509542040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509542100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509542160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509542220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509542280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509542340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509542400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509542460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509542520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509542580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509542640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509542700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509542760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509542820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509542880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509542940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509543000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509543060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509543120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509543180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509543240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509543300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509543360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509543420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509543480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509543540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509543600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509543660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509543720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509543780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509543840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509543900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509543960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509544020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509544080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509544140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509544200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509544260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509544320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509544380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509544440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509544500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509544560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509544620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509544680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509544740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509544800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509544860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509544920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509544980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509545040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509545100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509545160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509545220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509545280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509545340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509545400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509545460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509545520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509545580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509545640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509545700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509545760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509545820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509545880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509545940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509546000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509546060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509546120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509546180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509546240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509546300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509546360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509546420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509546480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509546540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509546600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509546660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509546720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509546780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509546840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509546900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509546960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509547020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509547080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509547140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509547200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509547260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509547320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509547380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509547440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509547500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509547560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509547620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509547680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509547740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509547800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509547860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509547920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509547980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509548040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509548100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509548160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509548220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509548280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509548340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509548400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509548460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509548520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509548580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509548640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509548700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509548760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509548820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509548880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509548940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509549000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509549060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509549120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509549180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509549240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509549300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509549360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509549420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509549480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509549540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509549600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509549660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509549720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509549780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509549840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509549900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509549960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509550020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509550080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509550140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509550200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509550260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509550320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509550380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509550440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509550500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509550560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509550620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509550680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509550740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509550800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509550860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509550920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509550980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509551040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509551100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509551160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509551220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509551280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509551340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509551400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509551460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509551520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509551580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509551640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509551700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509551760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509551820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509551880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509551940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509552000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509552060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509552120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509552180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509552240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509552300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509552360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509552420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509552480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509552540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509552600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509552660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509552720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509552780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509552840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509552900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509552960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509553020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509553080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509553140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509553200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509553260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509553320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509553380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509553440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509553500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509553560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509553620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509553680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509553740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509553800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509553860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509553920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509553980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509554040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509554100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509554160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509554220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509554280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509554340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509554400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509554460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509554520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509554580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509554640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509554700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509554760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509554820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509554880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509554940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509555000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509555060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509555120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509555180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509555240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509555300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509555360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509555420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509555480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509555540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509555600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509555660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509555720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509555780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509555840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509555900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509555960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509556020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509556080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509556140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509556200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509556260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509556320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509556380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509556440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509556500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509556560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509556620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509556680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509556740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509556800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509556860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509556920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509556980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509557040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509557100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509557160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509557220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509557280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509557340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509557400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509557460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509557520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509557580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509557640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509557700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509557760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509557820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509557880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509557940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509558000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509558060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509558120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509558180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509558240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509558300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509558360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509558420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509558480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509558540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509558600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509558660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509558720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509558780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509558840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509558900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509558960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509559020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509559080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509559140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509559200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509559260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509559320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509559380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509559440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509559500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509559560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509559620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509559680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509559740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509559800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509559860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509559920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509559980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509560040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509560100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509560160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509560220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509560280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509560340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509560400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509560460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509560520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509560580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509560640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509560700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509560760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509560820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509560880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509560940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509561000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509561060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509561120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509561180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509561240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509561300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509561360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509561420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509561480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509561540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509561600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509561660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509561720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509561780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509561840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509561900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509561960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509562020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509562080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509562140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509562200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509562260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509562320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509562380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509562440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509562500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509562560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509562620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509562680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509562740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509562800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509562860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509562920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509562980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509563040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509563100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509563160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509563220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509563280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509563340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509563400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509563460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509563520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509563580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509563640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509563700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509563760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509563820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509563880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509563940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509564000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509564060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509564120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509564180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509564240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509564300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509564360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509564420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509564480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509564540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509564600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509564660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509564720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509564780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509564840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509564900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509564960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509565020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509565080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509565140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509565200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509565260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509565320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509565380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509565440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509565500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509565560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509565620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509565680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509565740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509565800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509565860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509565920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509565980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509566040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509566100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509566160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509566220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509566280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509566340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509566400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509566460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509566520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509566580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509566640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509566700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509566760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509566820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509566880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509566940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509567000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509567060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509567120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509567180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509567240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509567300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509567360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509567420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509567480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509567540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509567600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509567660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509567720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509567780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509567840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509567900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509567960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509568020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509568080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509568140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509568200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509568260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509568320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509568380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509568440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509568500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509568560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509568620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509568680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509568740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509568800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509568860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509568920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509568980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509569040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509569100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509569160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509569220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509569280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509569340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509569400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509569460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509569520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509569580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509569640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509569700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509569760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509569820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509569880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509569940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509570000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509570060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509570120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509570180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509570240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509570300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509570360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509570420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509570480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509570540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509570600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509570660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509570720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509570780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509570840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509570900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509570960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509571020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509571080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509571140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509571200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509571260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509571320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509571380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509571440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509571500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509571560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509571620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509571680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509571740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509571800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509571860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509571920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509571980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509572040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509572100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509572160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509572220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509572280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509572340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509572400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509572460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509572520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509572580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509572640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509572700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509572760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509572820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509572880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509572940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509573000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509573060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509573120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509573180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509573240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509573300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509573360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509573420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509573480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509573540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509573600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509573660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509573720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509573780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509573840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509573900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509573960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509574020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509574080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509574140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509574200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509574260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509574320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509574380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509574440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509574500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509574560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509574620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509574680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509574740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509574800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509574860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509574920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509574980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509575040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509575100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509575160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509575220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509575280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509575340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509575400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509575460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509575520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509575580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509575640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509575700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509575760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509575820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509575880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509575940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509576000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509576060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509576120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509576180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509576240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509576300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509576360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509576420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509576480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509576540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509576600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509576660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509576720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509576780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509576840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509576900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509576960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509577020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509577080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509577140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509577200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509577260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509577320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509577380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509577440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509577500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509577560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509577620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509577680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509577740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509577800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509577860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509577920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509577980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509578040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509578100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509578160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509578220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509578280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509578340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509578400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509578460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509578520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509578580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509578640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509578700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509578760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509578820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509578880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509578940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509579000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509579060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509579120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509579180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509579240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509579300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509579360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509579420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509579480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509579540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509579600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509579660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509579720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509579780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509579840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509579900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509579960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509580020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509580080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509580140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509580200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509580260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509580320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509580380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509580440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509580500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509580560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509580620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509580680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509580740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509580800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509580860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509580920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509580980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509581040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509581100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509581160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509581220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509581280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509581340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509581400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509581460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509581520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509581580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509581640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509581700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509581760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509581820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509581880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509581940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509582000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509582060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509582120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509582180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509582240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509582300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509582360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509582420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509582480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509582540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509582600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509582660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509582720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509582780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509582840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509582900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509582960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509583020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509583080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509583140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509583200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509583260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509583320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509583380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509583440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509583500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509583560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509583620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509583680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509583740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509583800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509583860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509583920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509583980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509584040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509584100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509584160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509584220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509584280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509584340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509584400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509584460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509584520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509584580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509584640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509584700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509584760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509584820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509584880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509584940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509585000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509585060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509585120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509585180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509585240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509585300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509585360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509585420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509585480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509585540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509585600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509585660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509585720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509585780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509585840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509585900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509585960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509586020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509586080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509586140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509586200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509586260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509586320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509586380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509586440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509586500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509586560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509586620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509586680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509586740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509586800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509586860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509586920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509586980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509587040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509587100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509587160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509587220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509587280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509587340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509587400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509587460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509587520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509587580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509587640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509587700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509587760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509587820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509587880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509587940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509588000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509588060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509588120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509588180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509588240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509588300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509588360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509588420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509588480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509588540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509588600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509588660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509588720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509588780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509588840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509588900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509588960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509589020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509589080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509589140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509589200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509589260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509589320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509589380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509589440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509589500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509589560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509589620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509589680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509589740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509589800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509589860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509589920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509589980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509590040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509590100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509590160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509590220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509590280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509590340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509590400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509590460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509590520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509590580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509590640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509590700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509590760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509590820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509590880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509590940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509591000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509591060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509591120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509591180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509591240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509591300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509591360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509591420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509591480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509591540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509591600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509591660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509591720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509591780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509591840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509591900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509591960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509592020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509592080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509592140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509592200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509592260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509592320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509592380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509592440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509592500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509592560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509592620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509592680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509592740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509592800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509592860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509592920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509592980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509593040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509593100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509593160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509593220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509593280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509593340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509593400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509593460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509593520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509593580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509593640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509593700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509593760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509593820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509593880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509593940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509594000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509594060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509594120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509594180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509594240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509594300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509594360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509594420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509594480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509594540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509594600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509594660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509594720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509594780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509594840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509594900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509594960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509595020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509595080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509595140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509595200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509595260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509595320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509595380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509595440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509595500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509595560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509595620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509595680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509595740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509595800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509595860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509595920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509595980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509596040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509596100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509596160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509596220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509596280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509596340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509596400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509596460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509596520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509596580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509596640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509596700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509596760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509596820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509596880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509596940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509597000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509597060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509597120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509597180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509597240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509597300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509597360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509597420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509597480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509597540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509597600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509597660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509597720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509597780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509597840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509597900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509597960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509598020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509598080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509598140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509598200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509598260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509598320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509598380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509598440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509598500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509598560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509598620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509598680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509598740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509598800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509598860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509598920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509598980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509599040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509599100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509599160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509599220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509599280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509599340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509599400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509599460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509599520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509599580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509599640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509599700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509599760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509599820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509599880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509599940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509600000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509600060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509600120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509600180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509600240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509600300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509600360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509600420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509600480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509600540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509600600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509600660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509600720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509600780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509600840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509600900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509600960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509601020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509601080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509601140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509601200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509601260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509601320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509601380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509601440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509601500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509601560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509601620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509601680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509601740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509601800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509601860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509601920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509601980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509602040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509602100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509602160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509602220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509602280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509602340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509602400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509602460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509602520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509602580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509602640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509602700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509602760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509602820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509602880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509602940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509603000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509603060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509603120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509603180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509603240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509603300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509603360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509603420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509603480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509603540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509603600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509603660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509603720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509603780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509603840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509603900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509603960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509604020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509604080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509604140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509604200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509604260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509604320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509604380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509604440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509604500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509604560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509604620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509604680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509604740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509604800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509604860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509604920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509604980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509605040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509605100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509605160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509605220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509605280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509605340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509605400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509605460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509605520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509605580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509605640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509605700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509605760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509605820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509605880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509605940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509606000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509606060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509606120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509606180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509606240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509606300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509606360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509606420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509606480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509606540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509606600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509606660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509606720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509606780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509606840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509606900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509606960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509607020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509607080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509607140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509607200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509607260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509607320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509607380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509607440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509607500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509607560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509607620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509607680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509607740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509607800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509607860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509607920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509607980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509608040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509608100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509608160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509608220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509608280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509608340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509608400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509608460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509608520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509608580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509608640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509608700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509608760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509608820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509608880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509608940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509609000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509609060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509609120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509609180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509609240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509609300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509609360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509609420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509609480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509609540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509609600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509609660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509609720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509609780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509609840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509609900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509609960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509610020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509610080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509610140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509610200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509610260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509610320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509610380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509610440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509610500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509610560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509610620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509610680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509610740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509610800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509610860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509610920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509610980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509611040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509611100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509611160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509611220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509611280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509611340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509611400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509611460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509611520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509611580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509611640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509611700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509611760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509611820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509611880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509611940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509612000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509612060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509612120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509612180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509612240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509612300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509612360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509612420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509612480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509612540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509612600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509612660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509612720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509612780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509612840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509612900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509612960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509613020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509613080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509613140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509613200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509613260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509613320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509613380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509613440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509613500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509613560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509613620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509613680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509613740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509613800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509613860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509613920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509613980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509614040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509614100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509614160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509614220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509614280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509614340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509614400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509614460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509614520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509614580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509614640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509614700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509614760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509614820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509614880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509614940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509615000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509615060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509615120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509615180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509615240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509615300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509615360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509615420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509615480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509615540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509615600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509615660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509615720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509615780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509615840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509615900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509615960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509616020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509616080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509616140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509616200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509616260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509616320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509616380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509616440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509616500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509616560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509616620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509616680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509616740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509616800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509616860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509616920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509616980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509617040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509617100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509617160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509617220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509617280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509617340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509617400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509617460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509617520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509617580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509617640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509617700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509617760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509617820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509617880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509617940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509618000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509618060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509618120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509618180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509618240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509618300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509618360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509618420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509618480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509618540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509618600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509618660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509618720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509618780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509618840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509618900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509618960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509619020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509619080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509619140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509619200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509619260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509619320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509619380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509619440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509619500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509619560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509619620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509619680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509619740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509619800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509619860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509619920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509619980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509620040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509620100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509620160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509620220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509620280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509620340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509620400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509620460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509620520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509620580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509620640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509620700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509620760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509620820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509620880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509620940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509621000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509621060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509621120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509621180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509621240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509621300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509621360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509621420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509621480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509621540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509621600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509621660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509621720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509621780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509621840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509621900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509621960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509622020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509622080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509622140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509622200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509622260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509622320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509622380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509622440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509622500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509622560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509622620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509622680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509622740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509622800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509622860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509622920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509622980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509623040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509623100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509623160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509623220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509623280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509623340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509623400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509623460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509623520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509623580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509623640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509623700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509623760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509623820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509623880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509623940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509624000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509624060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509624120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509624180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509624240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509624300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509624360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509624420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509624480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509624540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509624600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509624660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509624720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509624780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509624840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509624900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509624960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509625020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509625080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509625140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509625200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509625260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509625320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509625380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509625440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509625500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509625560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509625620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509625680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509625740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509625800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509625860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509625920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509625980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509626040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509626100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509626160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509626220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509626280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509626340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509626400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509626460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509626520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509626580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509626640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509626700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509626760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509626820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509626880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509626940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509627000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509627060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509627120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509627180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509627240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509627300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509627360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509627420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509627480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509627540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509627600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509627660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509627720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509627780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509627840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509627900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509627960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509628020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509628080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509628140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509628200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509628260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509628320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509628380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509628440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509628500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509628560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509628620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509628680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509628740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509628800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509628860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509628920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509628980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509629040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509629100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509629160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509629220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509629280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509629340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509629400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509629460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509629520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509629580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509629640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509629700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509629760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509629820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509629880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509629940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509630000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509630060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509630120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509630180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509630240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509630300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509630360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509630420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509630480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509630540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509630600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509630660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509630720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509630780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509630840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509630900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509630960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509631020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509631080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509631140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509631200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509631260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509631320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509631380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509631440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509631500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509631560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509631620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509631680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509631740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509631800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509631860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509631920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509631980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509632040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509632100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509632160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509632220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509632280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509632340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509632400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509632460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509632520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509632580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509632640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509632700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509632760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509632820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509632880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509632940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509633000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509633060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509633120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509633180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509633240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509633300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509633360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509633420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509633480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509633540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509633600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509633660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509633720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509633780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509633840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509633900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509633960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509634020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509634080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509634140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509634200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509634260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509634320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509634380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509634440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509634500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509634560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509634620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509634680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509634740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509634800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509634860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509634920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509634980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509635040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509635100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509635160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509635220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509635280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509635340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509635400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509635460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509635520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509635580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509635640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509635700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509635760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509635820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509635880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509635940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509636000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509636060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509636120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509636180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509636240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509636300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509636360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509636420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509636480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509636540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509636600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509636660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509636720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509636780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509636840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509636900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509636960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509637020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509637080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509637140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509637200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509637260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509637320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509637380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509637440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509637500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509637560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509637620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509637680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509637740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509637800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509637860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509637920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509637980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509638040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509638100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509638160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509638220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509638280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509638340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509638400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509638460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509638520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509638580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509638640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509638700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509638760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509638820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509638880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509638940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509639000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509639060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509639120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509639180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509639240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509639300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509639360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509639420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509639480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509639540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509639600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509639660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509639720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509639780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509639840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509639900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509639960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509640020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509640080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509640140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509640200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509640260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509640320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509640380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509640440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509640500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509640560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509640620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509640680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509640740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509640800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509640860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509640920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509640980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509641040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509641100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509641160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509641220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509641280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509641340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509641400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509641460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509641520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509641580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509641640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509641700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509641760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509641820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509641880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509641940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509642000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509642060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509642120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509642180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509642240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509642300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509642360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509642420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509642480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509642540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509642600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509642660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509642720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509642780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509642840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509642900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509642960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509643020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509643080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509643140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509643200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509643260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509643320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509643380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509643440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509643500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509643560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509643620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509643680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509643740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509643800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509643860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509643920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509643980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509644040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509644100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509644160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509644220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509644280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509644340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509644400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509644460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509644520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509644580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509644640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509644700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509644760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509644820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509644880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509644940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509645000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509645060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509645120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509645180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509645240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509645300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509645360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509645420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509645480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509645540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509645600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509645660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509645720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509645780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509645840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509645900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509645960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509646020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509646080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509646140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509646200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509646260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509646320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509646380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509646440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509646500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509646560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509646620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509646680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509646740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509646800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509646860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509646920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509646980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509647040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509647100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509647160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509647220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509647280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509647340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509647400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509647460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509647520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509647580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509647640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509647700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509647760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509647820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509647880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509647940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509648000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509648060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509648120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509648180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509648240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509648300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509648360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509648420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509648480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509648540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509648600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509648660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509648720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509648780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509648840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509648900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509648960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509649020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509649080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509649140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509649200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509649260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509649320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509649380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509649440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509649500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509649560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509649620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509649680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509649740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509649800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509649860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509649920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509649980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509650040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509650100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509650160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509650220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509650280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509650340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509650400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509650460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509650520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509650580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509650640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509650700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509650760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509650820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509650880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509650940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509651000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509651060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509651120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509651180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509651240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509651300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509651360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509651420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509651480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509651540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509651600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509651660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509651720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509651780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509651840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509651900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509651960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509652020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509652080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509652140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509652200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509652260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509652320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509652380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509652440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509652500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509652560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509652620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509652680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509652740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509652800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509652860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509652920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509652980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509653040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509653100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509653160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509653220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509653280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509653340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509653400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509653460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509653520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509653580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509653640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509653700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509653760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509653820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509653880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509653940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509654000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509654060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509654120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509654180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509654240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509654300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509654360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509654420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509654480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509654540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509654600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509654660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509654720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509654780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509654840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509654900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509654960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509655020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509655080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509655140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509655200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509655260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509655320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509655380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509655440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509655500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509655560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509655620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509655680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509655740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509655800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509655860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509655920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509655980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509656040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509656100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509656160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509656220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509656280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509656340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509656400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509656460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509656520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509656580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509656640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509656700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509656760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509656820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509656880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509656940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509657000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509657060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509657120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509657180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509657240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509657300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509657360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509657420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509657480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509657540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509657600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509657660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509657720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509657780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509657840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509657900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509657960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509658020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509658080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509658140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509658200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509658260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509658320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509658380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509658440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509658500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509658560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509658620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509658680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509658740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509658800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509658860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509658920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509658980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509659040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509659100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509659160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509659220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509659280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509659340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509659400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509659460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509659520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509659580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509659640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509659700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509659760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509659820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509659880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509659940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509660000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509660060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509660120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509660180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509660240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509660300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509660360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509660420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509660480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509660540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509660600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509660660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509660720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509660780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509660840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509660900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509660960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509661020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509661080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509661140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509661200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509661260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509661320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509661380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509661440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509661500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509661560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509661620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509661680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509661740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509661800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509661860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509661920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509661980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509662040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509662100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509662160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509662220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509662280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509662340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509662400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509662460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509662520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509662580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509662640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509662700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509662760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509662820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509662880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509662940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509663000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509663060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509663120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509663180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509663240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509663300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509663360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509663420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509663480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509663540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509663600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509663660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509663720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509663780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509663840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509663900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509663960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509664020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509664080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509664140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509664200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509664260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509664320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509664380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509664440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509664500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509664560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509664620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509664680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509664740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509664800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509664860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509664920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509664980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509665040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509665100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509665160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509665220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509665280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509665340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509665400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509665460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509665520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509665580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509665640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509665700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509665760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509665820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509665880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509665940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509666000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509666060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509666120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509666180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509666240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509666300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509666360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509666420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509666480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509666540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509666600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509666660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509666720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509666780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509666840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509666900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509666960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509667020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509667080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509667140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509667200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509667260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509667320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509667380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509667440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509667500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509667560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509667620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509667680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509667740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509667800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509667860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509667920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509667980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509668040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509668100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509668160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509668220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509668280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509668340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509668400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509668460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509668520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509668580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509668640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509668700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509668760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509668820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509668880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509668940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509669000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509669060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509669120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509669180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509669240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509669300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509669360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509669420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509669480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509669540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509669600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509669660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509669720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509669780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509669840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509669900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509669960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509670020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509670080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509670140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509670200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509670260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509670320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509670380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509670440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509670500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509670560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509670620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509670680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509670740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509670800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509670860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509670920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509670980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509671040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509671100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509671160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509671220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509671280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509671340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509671400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509671460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509671520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509671580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509671640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509671700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509671760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509671820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509671880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509671940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509672000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509672060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509672120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509672180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509672240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509672300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509672360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509672420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509672480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509672540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509672600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509672660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509672720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509672780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509672840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509672900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509672960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509673020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509673080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509673140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509673200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509673260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509673320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509673380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509673440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509673500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509673560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509673620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509673680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509673740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509673800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509673860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509673920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509673980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509674040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509674100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509674160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509674220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509674280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509674340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509674400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509674460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509674520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509674580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509674640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509674700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509674760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509674820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509674880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509674940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509675000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509675060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509675120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509675180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509675240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509675300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509675360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509675420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509675480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509675540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509675600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509675660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509675720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509675780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509675840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509675900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509675960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509676020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509676080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509676140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509676200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509676260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509676320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509676380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509676440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509676500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509676560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509676620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509676680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509676740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509676800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509676860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509676920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509676980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509677040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509677100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509677160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509677220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509677280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509677340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509677400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509677460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509677520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509677580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509677640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509677700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509677760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509677820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509677880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509677940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509678000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509678060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509678120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509678180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509678240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509678300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509678360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509678420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509678480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509678540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509678600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509678660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509678720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509678780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509678840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509678900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509678960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509679020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509679080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509679140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509679200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509679260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509679320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509679380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509679440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509679500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509679560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509679620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509679680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509679740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509679800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509679860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509679920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509679980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509680040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509680100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509680160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509680220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509680280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509680340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509680400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509680460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509680520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509680580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509680640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509680700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509680760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509680820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509680880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509680940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509681000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509681060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509681120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509681180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509681240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509681300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509681360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509681420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509681480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509681540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509681600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509681660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509681720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509681780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509681840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509681900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509681960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509682020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509682080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509682140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509682200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509682260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509682320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509682380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509682440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509682500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509682560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509682620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509682680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509682740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509682800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509682860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509682920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509682980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509683040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509683100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509683160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509683220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509683280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509683340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509683400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509683460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509683520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509683580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509683640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509683700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509683760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509683820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509683880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509683940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509684000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509684060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509684120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509684180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509684240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509684300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509684360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509684420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509684480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509684540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509684600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509684660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509684720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509684780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509684840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509684900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509684960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509685020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509685080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509685140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509685200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509685260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509685320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509685380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509685440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509685500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509685560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509685620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509685680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509685740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509685800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509685860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509685920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509685980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509686040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509686100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509686160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509686220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509686280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509686340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509686400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509686460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509686520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509686580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509686640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509686700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509686760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509686820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509686880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509686940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509687000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509687060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509687120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509687180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509687240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509687300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509687360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509687420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509687480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509687540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509687600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509687660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509687720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509687780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509687840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509687900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509687960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509688020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509688080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509688140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509688200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509688260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509688320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509688380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509688440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509688500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509688560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509688620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509688680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509688740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509688800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509688860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509688920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509688980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509689040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509689100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509689160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509689220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509689280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509689340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509689400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509689460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509689520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509689580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509689640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509689700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509689760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509689820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509689880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509689940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509690000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509690060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509690120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509690180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509690240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509690300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509690360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509690420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509690480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509690540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509690600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509690660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509690720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509690780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509690840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509690900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509690960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509691020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509691080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509691140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509691200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509691260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509691320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509691380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509691440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509691500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509691560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509691620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509691680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509691740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509691800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509691860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509691920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509691980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509692040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509692100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509692160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509692220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509692280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509692340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509692400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509692460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509692520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509692580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509692640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509692700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509692760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509692820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509692880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509692940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509693000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509693060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509693120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509693180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509693240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509693300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509693360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509693420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509693480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509693540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509693600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509693660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509693720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509693780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509693840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509693900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509693960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509694020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509694080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509694140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509694200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509694260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509694320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509694380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509694440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509694500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509694560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509694620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509694680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509694740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509694800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509694860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509694920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509694980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509695040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509695100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509695160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509695220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509695280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509695340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509695400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509695460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509695520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509695580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509695640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509695700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509695760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509695820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509695880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509695940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509696000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509696060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509696120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509696180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509696240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509696300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509696360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509696420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509696480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509696540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509696600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509696660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509696720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509696780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509696840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509696900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509696960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509697020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509697080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509697140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509697200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509697260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509697320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509697380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509697440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509697500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509697560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509697620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509697680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509697740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509697800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509697860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509697920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509697980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509698040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509698100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509698160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509698220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509698280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509698340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509698400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509698460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509698520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509698580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509698640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509698700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509698760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509698820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509698880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509698940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509699000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509699060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509699120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509699180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509699240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509699300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509699360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509699420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509699480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509699540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509699600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509699660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509699720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509699780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509699840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509699900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509699960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509700020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509700080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509700140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509700200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509700260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509700320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509700380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509700440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509700500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509700560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509700620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509700680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509700740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509700800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509700860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509700920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509700980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509701040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509701100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509701160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509701220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509701280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509701340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509701400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509701460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509701520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509701580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509701640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509701700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509701760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509701820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509701880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509701940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509702000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509702060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509702120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509702180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509702240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509702300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509702360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509702420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509702480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509702540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509702600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509702660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509702720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509702780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509702840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509702900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509702960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509703020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509703080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509703140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509703200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509703260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509703320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509703380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509703440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509703500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509703560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509703620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509703680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509703740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509703800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509703860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509703920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509703980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509704040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509704100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509704160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509704220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509704280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509704340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509704400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509704460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509704520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509704580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509704640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509704700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509704760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509704820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509704880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509704940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509705000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509705060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509705120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509705180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509705240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509705300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509705360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509705420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509705480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509705540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509705600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509705660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509705720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509705780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509705840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509705900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509705960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509706020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509706080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509706140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509706200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509706260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509706320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509706380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509706440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509706500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509706560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509706620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509706680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509706740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509706800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509706860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509706920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509706980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509707040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509707100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509707160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509707220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509707280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509707340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509707400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509707460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509707520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509707580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509707640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509707700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509707760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509707820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509707880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509707940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509708000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509708060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509708120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509708180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509708240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509708300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509708360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509708420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509708480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509708540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509708600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509708660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509708720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509708780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509708840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509708900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509708960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509709020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509709080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509709140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509709200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509709260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509709320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509709380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509709440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509709500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509709560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509709620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509709680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509709740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509709800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509709860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509709920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509709980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509710040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509710100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509710160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509710220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509710280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509710340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509710400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509710460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509710520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509710580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509710640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509710700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509710760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509710820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509710880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509710940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509711000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509711060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509711120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509711180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509711240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509711300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509711360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509711420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509711480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509711540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509711600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509711660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509711720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509711780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509711840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509711900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509711960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509712020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509712080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509712140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509712200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509712260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509712320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509712380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509712440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509712500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509712560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509712620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509712680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509712740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509712800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509712860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509712920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509712980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509713040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509713100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509713160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509713220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509713280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509713340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509713400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509713460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509713520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509713580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509713640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509713700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509713760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509713820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509713880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509713940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509714000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509714060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509714120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509714180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509714240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509714300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509714360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509714420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509714480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509714540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509714600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509714660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509714720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509714780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509714840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509714900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509714960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509715020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509715080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509715140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509715200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509715260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509715320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509715380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509715440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509715500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509715560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509715620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509715680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509715740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509715800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509715860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509715920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509715980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509716040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509716100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509716160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509716220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509716280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509716340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509716400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509716460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509716520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509716580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509716640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509716700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509716760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509716820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509716880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509716940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509717000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509717060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509717120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509717180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509717240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509717300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509717360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509717420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509717480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509717540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509717600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509717660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509717720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509717780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509717840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509717900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509717960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509718020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509718080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509718140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509718200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509718260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509718320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509718380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509718440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509718500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509718560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509718620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509718680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509718740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509718800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509718860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509718920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509718980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509719040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509719100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509719160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509719220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509719280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509719340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509719400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509719460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509719520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509719580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509719640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509719700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509719760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509719820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509719880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509719940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509720000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509720060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509720120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509720180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509720240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509720300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509720360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509720420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509720480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509720540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509720600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509720660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509720720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509720780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509720840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509720900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509720960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509721020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509721080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509721140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509721200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509721260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509721320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509721380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509721440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509721500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509721560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509721620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509721680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509721740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509721800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509721860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509721920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509721980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509722040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509722100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509722160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509722220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509722280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509722340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509722400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509722460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509722520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509722580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509722640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509722700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509722760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509722820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509722880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509722940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509723000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509723060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509723120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509723180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509723240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509723300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509723360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509723420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509723480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509723540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509723600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509723660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509723720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509723780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509723840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509723900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509723960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509724020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509724080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509724140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509724200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509724260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509724320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509724380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509724440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509724500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509724560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509724620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509724680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509724740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509724800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509724860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509724920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509724980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509725040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509725100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509725160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509725220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509725280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509725340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509725400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509725460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509725520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509725580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509725640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509725700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509725760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509725820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509725880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509725940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509726000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509726060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509726120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509726180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509726240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509726300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509726360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509726420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509726480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509726540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509726600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509726660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509726720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509726780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509726840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509726900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509726960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509727020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509727080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509727140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509727200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509727260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509727320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509727380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509727440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509727500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509727560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509727620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509727680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509727740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509727800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509727860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509727920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509727980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509728040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509728100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509728160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509728220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509728280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509728340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509728400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509728460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509728520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509728580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509728640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509728700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509728760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509728820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509728880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509728940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509729000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509729060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509729120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509729180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509729240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509729300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509729360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509729420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509729480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509729540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509729600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509729660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509729720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509729780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509729840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509729900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509729960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509730020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509730080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509730140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509730200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509730260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509730320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509730380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509730440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509730500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509730560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509730620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509730680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509730740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509730800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509730860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509730920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509730980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509731040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509731100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509731160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509731220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509731280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509731340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509731400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509731460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509731520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509731580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509731640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509731700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509731760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509731820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509731880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509731940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509732000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509732060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509732120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509732180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509732240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509732300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509732360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509732420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509732480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509732540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509732600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509732660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509732720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509732780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509732840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509732900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509732960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509733020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509733080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509733140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509733200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509733260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509733320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509733380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509733440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509733500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509733560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509733620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509733680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509733740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509733800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509733860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509733920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509733980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509734040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509734100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509734160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509734220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509734280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509734340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509734400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509734460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509734520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509734580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509734640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509734700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509734760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509734820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509734880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509734940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509735000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509735060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509735120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509735180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509735240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509735300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509735360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509735420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509735480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509735540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509735600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509735660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509735720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509735780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509735840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509735900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509735960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509736020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509736080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509736140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509736200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509736260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509736320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509736380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509736440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509736500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509736560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509736620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509736680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509736740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509736800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509736860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509736920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509736980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509737040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509737100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509737160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509737220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509737280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509737340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509737400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509737460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509737520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509737580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509737640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509737700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509737760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509737820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509737880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509737940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509738000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509738060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509738120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509738180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509738240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509738300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509738360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509738420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509738480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509738540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509738600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509738660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509738720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509738780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509738840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509738900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509738960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509739020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509739080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509739140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509739200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509739260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509739320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509739380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509739440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509739500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509739560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509739620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509739680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509739740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509739800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509739860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509739920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509739980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509740040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509740100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509740160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509740220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509740280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509740340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509740400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509740460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509740520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509740580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509740640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509740700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509740760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509740820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509740880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509740940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509741000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509741060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509741120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509741180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509741240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509741300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509741360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509741420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509741480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509741540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509741600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509741660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509741720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509741780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509741840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509741900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509741960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509742020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509742080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509742140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509742200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509742260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509742320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509742380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509742440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509742500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509742560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509742620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509742680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509742740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509742800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509742860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509742920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509742980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509743040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509743100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509743160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509743220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509743280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509743340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509743400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509743460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509743520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509743580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509743640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509743700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509743760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509743820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509743880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509743940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509744000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509744060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509744120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509744180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509744240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509744300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509744360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509744420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509744480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509744540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509744600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509744660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509744720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509744780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509744840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509744900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509744960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509745020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509745080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509745140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509745200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509745260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509745320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509745380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509745440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509745500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509745560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509745620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509745680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509745740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509745800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509745860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509745920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509745980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509746040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509746100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509746160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509746220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509746280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509746340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509746400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509746460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509746520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509746580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509746640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509746700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509746760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509746820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509746880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509746940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509747000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509747060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509747120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509747180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509747240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509747300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509747360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509747420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509747480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509747540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509747600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509747660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509747720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509747780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509747840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509747900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509747960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509748020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509748080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509748140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509748200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509748260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509748320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509748380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509748440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509748500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509748560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509748620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509748680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509748740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509748800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509748860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509748920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509748980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509749040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509749100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509749160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509749220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509749280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509749340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509749400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509749460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509749520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509749580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509749640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509749700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509749760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509749820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509749880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509749940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509750000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509750060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509750120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509750180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509750240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509750300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509750360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509750420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509750480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509750540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509750600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509750660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509750720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509750780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509750840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509750900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509750960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509751020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509751080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509751140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509751200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509751260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509751320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509751380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509751440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509751500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509751560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509751620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509751680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509751740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509751800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509751860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509751920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509751980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509752040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509752100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509752160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509752220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509752280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509752340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509752400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509752460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509752520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509752580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509752640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509752700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509752760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509752820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509752880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509752940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509753000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509753060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509753120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509753180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509753240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509753300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509753360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509753420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509753480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509753540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509753600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509753660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509753720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509753780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509753840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509753900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509753960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509754020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509754080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509754140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509754200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509754260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509754320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509754380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509754440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509754500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509754560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509754620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509754680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509754740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509754800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509754860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509754920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509754980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509755040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509755100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509755160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509755220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509755280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509755340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509755400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509755460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509755520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509755580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509755640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509755700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509755760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509755820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509755880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509755940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509756000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509756060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509756120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509756180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509756240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509756300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509756360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509756420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509756480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509756540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509756600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509756660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509756720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509756780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509756840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509756900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509756960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509757020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509757080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509757140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509757200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509757260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509757320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509757380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509757440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509757500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509757560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509757620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509757680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509757740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509757800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509757860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509757920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509757980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509758040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509758100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509758160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509758220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509758280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509758340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509758400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509758460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509758520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509758580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509758640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509758700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509758760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509758820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509758880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509758940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509759000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509759060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509759120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509759180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509759240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509759300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509759360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509759420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509759480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509759540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509759600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509759660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509759720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509759780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509759840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509759900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509759960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509760020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509760080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509760140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509760200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509760260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509760320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509760380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509760440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509760500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509760560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509760620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509760680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509760740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509760800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509760860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509760920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509760980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509761040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509761100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509761160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509761220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509761280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509761340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509761400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509761460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509761520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509761580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509761640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509761700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509761760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509761820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509761880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509761940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509762000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509762060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509762120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509762180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509762240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509762300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509762360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509762420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509762480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509762540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509762600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509762660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509762720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509762780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509762840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509762900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509762960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509763020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509763080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509763140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509763200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509763260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509763320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509763380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509763440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509763500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509763560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509763620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509763680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509763740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509763800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509763860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509763920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509763980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509764040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509764100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509764160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509764220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509764280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509764340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509764400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509764460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509764520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509764580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509764640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509764700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509764760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509764820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509764880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509764940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509765000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509765060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509765120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509765180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509765240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509765300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509765360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509765420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509765480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509765540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509765600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509765660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509765720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509765780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509765840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509765900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509765960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509766020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509766080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509766140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509766200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509766260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509766320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509766380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509766440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509766500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509766560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509766620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509766680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509766740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509766800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509766860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509766920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509766980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509767040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509767100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509767160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509767220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509767280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509767340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509767400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509767460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509767520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509767580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509767640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509767700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509767760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509767820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509767880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509767940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509768000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509768060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509768120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509768180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509768240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509768300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509768360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509768420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509768480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509768540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509768600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509768660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509768720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509768780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509768840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509768900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509768960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509769020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509769080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509769140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509769200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509769260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509769320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509769380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509769440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509769500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509769560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509769620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509769680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509769740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509769800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509769860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509769920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509769980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509770040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509770100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509770160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509770220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509770280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509770340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509770400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509770460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509770520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509770580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509770640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509770700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509770760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509770820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509770880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509770940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509771000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509771060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509771120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509771180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509771240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509771300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509771360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509771420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509771480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509771540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509771600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509771660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509771720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509771780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509771840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509771900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509771960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509772020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509772080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509772140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509772200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509772260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509772320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509772380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509772440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509772500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509772560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509772620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509772680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509772740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509772800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509772860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509772920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509772980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509773040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509773100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509773160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509773220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509773280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509773340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509773400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509773460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509773520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509773580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509773640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509773700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509773760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509773820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509773880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509773940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509774000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509774060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509774120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509774180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509774240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509774300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509774360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509774420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509774480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509774540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509774600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509774660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509774720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509774780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509774840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509774900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509774960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509775020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509775080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509775140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509775200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509775260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509775320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509775380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509775440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509775500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509775560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509775620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509775680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509775740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509775800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509775860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509775920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509775980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509776040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509776100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509776160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509776220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509776280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509776340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509776400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509776460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509776520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509776580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509776640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509776700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509776760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509776820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509776880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509776940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509777000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509777060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509777120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509777180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509777240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509777300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509777360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509777420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509777480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509777540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509777600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509777660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509777720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509777780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509777840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509777900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509777960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509778020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509778080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509778140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509778200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509778260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509778320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509778380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509778440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509778500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509778560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509778620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509778680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509778740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509778800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509778860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509778920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509778980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509779040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509779100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509779160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509779220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509779280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509779340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509779400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509779460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509779520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509779580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509779640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509779700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509779760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509779820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509779880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509779940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509780000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509780060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509780120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509780180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509780240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509780300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509780360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509780420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509780480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509780540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509780600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509780660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509780720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509780780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509780840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509780900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509780960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509781020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509781080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509781140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509781200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509781260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509781320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509781380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509781440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509781500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509781560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509781620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509781680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509781740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509781800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509781860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509781920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509781980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509782040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509782100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509782160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509782220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509782280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509782340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509782400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509782460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509782520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509782580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509782640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509782700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509782760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509782820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509782880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509782940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509783000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509783060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509783120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509783180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509783240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509783300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509783360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509783420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509783480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509783540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509783600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509783660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509783720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509783780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509783840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509783900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509783960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509784020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509784080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509784140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509784200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509784260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509784320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509784380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509784440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509784500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509784560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509784620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509784680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509784740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509784800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509784860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509784920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509784980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509785040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509785100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509785160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509785220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509785280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509785340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509785400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509785460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509785520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509785580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509785640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509785700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509785760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509785820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509785880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509785940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509786000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509786060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509786120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509786180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509786240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509786300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509786360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509786420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509786480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509786540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509786600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509786660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509786720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509786780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509786840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509786900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509786960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509787020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509787080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509787140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509787200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509787260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509787320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509787380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509787440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509787500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509787560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509787620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509787680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509787740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509787800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509787860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509787920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509787980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509788040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509788100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509788160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509788220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509788280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509788340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509788400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509788460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509788520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509788580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509788640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509788700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509788760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509788820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509788880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509788940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509789000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509789060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509789120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509789180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509789240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509789300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509789360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509789420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509789480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509789540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509789600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509789660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509789720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509789780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509789840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509789900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509789960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509790020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509790080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509790140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509790200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509790260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509790320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509790380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509790440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509790500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509790560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509790620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509790680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509790740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509790800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509790860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509790920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509790980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509791040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509791100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509791160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509791220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509791280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509791340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509791400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509791460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509791520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509791580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509791640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509791700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509791760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509791820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509791880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509791940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509792000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509792060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509792120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509792180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509792240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509792300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509792360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509792420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509792480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509792540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509792600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509792660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509792720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509792780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509792840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509792900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509792960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509793020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509793080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509793140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509793200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509793260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509793320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509793380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509793440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509793500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509793560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509793620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509793680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509793740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509793800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509793860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509793920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509793980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509794040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509794100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509794160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509794220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509794280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509794340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509794400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509794460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509794520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509794580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509794640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509794700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509794760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509794820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509794880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509794940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509795000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509795060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509795120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509795180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509795240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509795300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509795360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509795420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509795480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509795540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509795600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509795660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509795720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509795780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509795840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509795900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509795960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509796020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509796080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509796140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509796200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509796260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509796320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509796380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509796440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509796500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509796560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509796620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509796680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509796740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509796800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509796860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509796920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509796980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509797040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509797100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509797160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509797220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509797280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509797340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509797400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509797460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509797520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509797580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509797640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509797700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509797760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509797820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509797880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509797940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509798000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509798060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509798120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509798180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509798240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509798300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509798360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509798420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509798480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509798540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509798600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509798660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509798720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509798780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509798840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509798900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509798960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509799020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509799080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509799140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509799200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509799260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509799320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509799380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509799440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509799500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509799560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509799620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509799680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509799740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509799800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509799860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509799920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509799980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509800040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509800100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509800160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509800220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509800280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509800340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509800400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509800460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509800520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509800580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509800640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509800700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509800760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509800820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509800880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509800940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509801000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509801060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509801120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509801180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509801240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509801300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509801360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509801420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509801480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509801540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509801600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509801660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509801720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509801780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509801840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509801900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509801960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509802020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509802080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509802140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509802200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509802260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509802320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509802380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509802440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509802500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509802560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509802620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509802680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509802740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509802800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509802860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509802920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509802980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509803040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509803100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509803160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509803220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509803280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509803340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509803400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509803460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509803520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509803580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509803640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509803700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509803760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509803820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509803880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509803940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509804000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509804060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509804120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509804180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509804240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509804300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509804360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509804420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509804480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509804540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509804600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509804660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509804720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509804780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509804840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509804900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509804960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509805020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509805080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509805140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509805200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509805260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509805320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509805380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509805440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509805500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509805560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509805620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509805680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509805740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509805800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509805860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509805920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509805980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509806040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509806100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509806160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509806220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509806280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509806340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509806400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509806460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509806520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509806580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509806640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509806700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509806760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509806820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509806880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509806940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509807000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509807060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509807120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509807180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509807240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509807300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509807360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509807420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509807480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509807540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509807600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509807660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509807720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509807780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509807840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509807900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509807960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509808020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509808080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509808140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509808200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509808260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509808320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509808380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509808440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509808500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509808560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509808620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509808680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509808740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509808800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509808860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509808920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509808980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509809040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509809100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509809160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509809220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509809280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509809340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509809400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509809460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509809520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509809580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509809640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509809700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509809760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509809820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509809880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509809940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509810000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509810060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509810120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509810180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509810240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509810300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509810360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509810420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509810480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509810540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509810600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509810660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509810720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509810780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509810840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509810900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509810960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509811020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509811080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509811140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509811200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509811260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509811320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509811380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509811440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509811500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509811560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509811620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509811680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509811740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509811800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509811860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509811920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509811980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509812040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509812100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509812160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509812220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509812280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509812340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509812400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509812460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509812520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509812580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509812640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509812700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509812760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509812820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509812880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509812940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509813000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509813060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509813120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509813180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509813240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509813300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509813360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509813420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509813480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509813540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509813600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509813660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509813720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509813780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509813840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509813900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509813960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509814020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509814080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509814140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509814200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509814260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509814320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509814380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509814440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509814500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509814560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509814620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509814680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509814740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509814800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509814860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509814920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509814980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509815040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509815100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509815160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509815220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509815280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509815340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509815400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509815460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509815520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509815580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509815640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509815700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509815760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509815820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509815880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509815940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509816000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509816060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509816120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509816180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509816240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509816300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509816360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509816420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509816480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509816540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509816600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509816660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509816720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509816780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509816840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509816900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509816960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509817020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509817080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509817140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509817200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509817260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509817320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509817380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509817440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509817500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509817560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509817620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509817680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509817740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509817800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509817860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509817920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509817980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509818040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509818100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509818160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509818220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509818280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509818340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509818400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509818460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509818520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509818580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509818640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509818700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509818760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509818820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509818880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509818940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509819000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509819060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509819120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509819180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509819240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509819300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509819360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509819420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509819480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509819540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509819600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509819660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509819720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509819780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509819840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509819900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509819960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509820020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509820080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509820140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509820200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509820260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509820320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509820380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509820440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509820500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509820560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509820620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509820680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509820740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509820800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509820860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509820920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509820980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509821040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509821100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509821160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509821220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509821280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509821340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509821400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509821460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509821520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509821580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509821640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509821700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509821760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509821820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509821880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509821940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509822000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509822060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509822120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509822180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509822240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509822300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509822360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509822420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509822480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509822540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509822600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509822660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509822720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509822780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509822840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509822900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509822960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509823020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509823080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509823140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509823200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509823260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509823320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509823380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509823440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509823500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509823560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509823620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509823680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509823740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509823800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509823860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509823920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509823980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509824040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509824100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509824160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509824220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509824280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509824340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509824400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509824460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509824520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509824580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509824640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509824700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509824760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509824820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509824880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509824940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509825000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509825060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509825120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509825180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509825240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509825300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509825360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509825420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509825480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509825540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509825600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509825660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509825720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509825780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509825840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509825900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509825960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509826020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509826080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509826140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509826200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509826260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509826320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509826380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509826440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509826500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509826560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509826620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509826680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509826740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509826800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509826860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509826920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509826980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509827040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509827100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509827160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509827220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509827280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509827340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509827400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509827460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509827520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509827580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509827640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509827700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509827760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509827820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509827880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509827940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509828000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509828060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509828120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509828180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509828240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509828300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509828360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509828420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509828480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509828540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509828600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509828660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509828720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509828780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509828840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509828900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509828960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509829020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509829080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509829140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509829200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509829260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509829320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509829380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509829440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509829500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509829560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509829620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509829680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509829740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509829800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509829860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509829920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509829980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509830040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509830100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509830160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509830220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509830280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509830340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509830400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509830460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509830520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509830580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509830640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509830700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509830760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509830820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509830880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509830940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509831000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509831060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509831120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509831180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509831240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509831300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509831360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509831420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509831480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509831540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509831600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509831660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509831720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509831780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509831840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509831900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509831960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509832020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509832080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509832140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509832200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509832260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509832320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509832380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509832440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509832500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509832560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509832620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509832680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509832740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509832800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509832860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509832920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509832980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509833040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509833100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509833160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509833220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509833280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509833340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509833400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509833460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509833520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509833580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509833640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509833700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509833760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509833820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509833880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509833940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509834000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509834060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509834120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509834180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509834240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509834300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509834360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509834420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509834480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509834540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509834600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509834660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509834720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509834780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509834840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509834900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509834960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509835020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509835080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509835140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509835200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509835260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509835320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509835380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509835440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509835500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509835560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509835620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509835680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509835740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509835800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509835860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509835920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509835980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509836040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509836100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509836160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509836220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509836280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509836340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509836400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509836460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509836520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509836580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509836640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509836700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509836760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509836820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509836880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509836940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509837000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509837060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509837120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509837180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509837240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509837300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509837360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509837420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509837480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509837540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509837600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509837660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509837720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509837780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509837840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509837900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509837960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509838020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509838080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509838140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509838200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509838260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509838320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509838380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509838440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509838500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509838560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509838620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509838680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509838740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509838800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509838860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509838920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509838980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509839040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509839100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509839160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509839220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509839280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509839340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509839400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509839460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509839520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509839580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509839640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509839700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509839760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509839820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509839880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509839940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509840000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509840060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509840120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509840180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509840240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509840300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509840360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509840420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509840480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509840540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509840600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509840660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509840720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509840780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509840840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509840900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509840960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509841020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509841080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509841140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509841200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509841260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509841320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509841380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509841440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509841500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509841560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509841620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509841680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509841740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509841800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509841860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509841920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509841980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509842040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509842100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509842160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509842220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509842280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509842340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509842400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509842460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509842520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509842580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509842640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509842700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509842760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509842820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509842880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509842940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509843000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509843060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509843120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509843180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509843240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509843300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509843360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509843420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509843480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509843540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509843600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509843660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509843720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509843780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509843840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509843900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509843960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509844020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509844080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509844140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509844200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509844260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509844320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509844380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509844440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509844500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509844560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509844620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509844680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509844740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509844800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509844860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509844920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509844980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509845040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509845100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509845160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509845220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509845280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509845340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509845400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509845460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509845520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509845580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509845640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509845700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509845760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509845820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509845880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509845940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509846000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509846060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509846120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509846180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509846240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509846300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509846360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509846420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509846480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509846540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509846600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509846660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509846720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509846780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509846840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509846900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509846960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509847020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509847080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509847140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509847200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509847260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509847320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509847380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509847440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509847500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509847560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509847620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509847680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509847740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509847800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509847860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509847920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509847980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509848040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509848100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509848160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509848220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509848280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509848340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509848400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509848460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509848520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509848580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509848640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509848700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509848760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509848820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509848880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509848940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509849000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509849060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509849120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509849180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509849240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509849300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509849360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509849420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509849480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509849540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509849600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509849660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509849720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509849780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509849840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509849900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509849960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509850020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509850080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509850140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509850200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509850260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509850320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509850380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509850440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509850500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509850560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509850620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509850680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509850740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509850800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509850860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509850920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509850980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509851040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509851100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509851160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509851220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509851280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509851340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509851400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509851460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509851520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509851580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509851640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509851700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509851760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509851820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509851880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509851940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509852000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509852060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509852120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509852180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509852240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509852300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509852360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509852420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509852480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509852540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509852600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509852660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509852720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509852780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509852840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509852900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509852960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509853020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509853080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509853140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509853200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509853260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509853320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509853380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509853440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509853500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509853560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509853620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509853680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509853740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509853800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509853860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509853920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509853980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509854040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509854100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509854160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509854220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509854280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509854340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509854400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509854460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509854520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509854580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509854640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509854700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509854760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509854820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509854880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509854940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509855000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509855060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509855120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509855180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509855240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509855300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509855360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509855420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509855480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509855540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509855600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509855660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509855720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509855780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509855840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509855900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509855960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509856020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509856080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509856140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509856200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509856260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509856320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509856380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509856440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509856500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509856560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509856620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509856680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509856740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509856800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509856860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509856920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509856980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509857040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509857100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509857160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509857220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509857280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509857340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509857400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509857460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509857520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509857580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509857640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509857700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509857760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509857820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509857880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509857940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509858000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509858060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509858120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509858180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509858240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509858300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509858360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509858420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509858480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509858540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509858600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509858660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509858720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509858780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509858840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509858900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509858960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509859020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509859080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509859140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509859200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509859260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509859320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509859380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509859440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509859500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509859560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509859620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509859680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509859740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509859800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509859860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509859920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509859980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509860040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509860100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509860160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509860220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509860280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509860340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509860400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509860460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509860520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509860580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509860640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509860700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509860760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509860820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509860880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509860940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509861000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509861060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509861120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509861180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509861240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509861300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509861360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509861420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509861480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509861540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509861600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509861660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509861720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509861780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509861840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509861900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509861960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509862020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509862080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509862140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509862200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509862260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509862320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509862380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509862440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509862500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509862560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509862620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509862680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509862740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509862800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509862860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509862920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509862980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509863040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509863100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509863160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509863220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509863280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509863340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509863400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509863460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509863520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509863580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509863640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509863700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509863760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509863820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509863880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509863940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509864000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509864060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509864120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509864180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509864240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509864300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509864360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509864420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509864480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509864540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509864600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509864660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509864720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509864780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509864840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509864900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509864960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509865020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509865080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509865140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509865200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509865260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509865320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509865380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509865440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509865500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509865560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509865620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509865680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509865740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509865800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509865860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509865920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509865980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509866040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509866100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509866160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509866220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509866280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509866340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509866400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509866460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509866520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509866580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509866640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509866700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509866760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509866820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509866880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509866940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509867000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509867060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509867120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509867180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509867240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509867300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509867360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509867420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509867480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509867540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509867600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509867660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509867720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509867780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509867840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509867900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509867960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509868020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509868080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509868140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509868200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509868260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509868320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509868380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509868440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509868500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509868560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509868620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509868680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509868740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509868800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509868860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509868920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509868980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509869040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509869100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509869160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509869220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509869280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509869340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509869400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509869460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509869520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509869580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509869640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509869700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509869760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509869820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509869880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509869940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509870000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509870060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509870120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509870180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509870240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509870300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509870360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509870420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509870480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509870540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509870600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509870660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509870720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509870780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509870840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509870900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509870960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509871020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509871080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509871140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509871200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509871260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509871320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509871380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509871440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509871500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509871560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509871620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509871680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509871740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509871800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509871860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509871920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509871980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509872040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509872100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509872160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509872220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509872280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509872340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509872400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509872460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509872520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509872580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509872640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509872700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509872760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509872820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509872880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509872940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509873000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509873060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509873120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509873180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509873240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509873300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509873360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509873420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509873480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509873540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509873600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509873660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509873720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509873780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509873840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509873900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509873960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509874020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509874080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509874140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509874200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509874260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509874320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509874380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509874440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509874500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509874560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509874620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509874680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509874740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509874800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509874860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509874920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509874980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509875040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509875100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509875160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509875220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509875280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509875340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509875400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509875460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509875520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509875580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509875640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509875700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509875760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509875820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509875880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509875940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509876000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509876060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509876120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509876180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509876240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509876300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509876360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509876420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509876480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509876540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509876600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509876660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509876720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509876780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509876840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509876900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509876960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509877020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509877080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509877140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509877200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509877260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509877320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509877380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509877440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509877500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509877560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509877620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509877680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509877740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509877800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509877860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509877920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509877980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509878040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509878100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509878160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509878220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509878280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509878340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509878400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509878460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509878520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509878580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509878640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509878700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509878760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509878820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509878880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509878940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509879000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509879060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509879120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509879180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509879240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509879300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509879360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509879420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509879480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509879540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509879600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509879660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509879720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509879780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509879840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509879900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509879960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509880020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509880080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509880140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509880200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509880260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509880320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509880380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509880440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509880500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509880560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509880620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509880680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509880740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509880800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509880860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509880920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509880980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509881040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509881100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509881160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509881220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509881280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509881340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509881400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509881460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509881520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509881580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509881640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509881700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509881760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509881820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509881880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509881940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509882000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509882060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509882120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509882180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509882240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509882300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509882360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509882420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509882480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509882540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509882600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509882660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509882720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509882780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509882840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509882900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509882960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509883020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509883080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509883140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509883200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509883260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509883320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509883380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509883440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509883500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509883560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509883620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509883680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509883740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509883800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509883860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509883920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509883980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509884040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509884100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509884160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509884220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509884280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509884340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509884400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509884460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509884520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509884580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509884640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509884700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509884760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509884820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509884880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509884940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509885000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509885060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509885120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509885180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509885240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509885300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509885360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509885420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509885480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509885540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509885600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509885660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509885720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509885780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509885840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509885900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509885960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509886020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509886080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509886140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509886200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509886260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509886320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509886380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509886440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509886500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509886560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509886620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509886680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509886740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509886800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509886860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509886920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509886980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509887040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509887100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509887160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509887220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509887280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509887340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509887400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509887460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509887520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509887580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509887640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509887700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509887760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509887820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509887880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509887940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509888000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509888060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509888120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509888180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509888240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509888300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509888360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509888420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509888480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509888540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509888600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509888660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509888720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509888780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509888840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509888900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509888960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509889020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509889080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509889140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509889200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509889260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509889320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509889380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509889440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509889500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509889560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509889620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509889680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509889740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509889800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509889860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509889920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509889980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509890040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509890100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509890160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509890220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509890280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509890340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509890400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509890460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509890520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509890580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509890640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509890700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509890760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509890820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509890880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509890940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509891000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509891060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509891120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509891180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509891240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509891300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509891360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509891420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509891480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509891540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509891600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509891660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509891720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509891780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509891840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509891900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509891960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509892020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509892080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509892140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509892200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509892260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509892320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509892380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509892440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509892500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509892560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509892620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509892680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509892740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509892800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509892860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509892920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509892980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509893040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509893100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509893160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509893220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509893280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509893340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509893400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509893460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509893520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509893580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509893640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509893700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509893760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509893820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509893880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509893940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509894000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509894060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509894120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509894180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509894240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509894300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509894360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509894420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509894480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509894540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509894600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509894660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509894720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509894780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509894840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509894900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509894960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509895020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509895080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509895140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509895200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509895260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509895320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509895380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509895440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509895500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509895560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509895620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509895680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509895740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509895800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509895860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509895920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509895980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509896040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509896100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509896160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509896220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509896280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509896340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509896400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509896460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509896520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509896580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509896640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509896700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509896760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509896820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509896880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509896940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509897000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509897060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509897120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509897180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509897240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509897300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509897360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509897420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509897480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509897540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509897600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509897660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509897720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509897780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509897840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509897900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509897960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509898020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509898080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509898140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509898200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509898260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509898320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509898380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509898440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509898500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509898560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509898620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509898680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509898740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509898800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509898860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509898920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509898980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509899040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509899100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509899160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509899220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509899280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509899340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509899400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509899460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509899520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509899580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509899640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509899700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509899760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509899820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509899880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509899940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509900000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509900060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509900120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509900180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509900240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509900300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509900360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509900420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509900480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509900540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509900600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509900660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509900720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509900780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509900840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509900900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509900960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509901020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509901080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509901140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509901200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509901260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509901320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509901380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509901440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509901500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509901560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509901620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509901680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509901740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509901800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509901860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509901920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509901980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509902040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509902100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509902160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509902220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509902280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509902340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509902400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509902460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509902520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509902580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509902640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509902700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509902760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509902820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509902880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509902940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509903000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509903060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509903120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509903180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509903240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509903300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509903360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509903420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509903480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509903540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509903600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509903660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509903720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509903780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509903840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509903900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509903960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509904020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509904080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509904140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509904200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509904260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509904320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509904380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509904440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509904500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509904560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509904620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509904680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509904740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509904800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509904860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509904920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509904980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509905040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509905100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509905160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509905220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509905280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509905340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509905400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509905460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509905520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509905580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509905640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509905700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509905760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509905820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509905880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509905940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509906000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509906060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509906120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509906180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509906240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509906300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509906360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509906420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509906480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509906540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509906600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509906660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509906720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509906780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509906840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509906900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509906960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509907020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509907080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509907140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509907200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509907260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509907320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509907380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509907440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509907500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509907560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509907620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509907680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509907740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509907800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509907860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509907920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509907980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509908040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509908100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509908160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509908220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509908280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509908340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509908400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509908460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509908520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509908580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509908640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509908700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509908760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509908820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509908880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509908940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509909000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509909060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509909120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509909180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509909240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509909300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509909360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509909420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509909480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509909540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509909600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509909660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509909720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509909780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509909840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509909900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509909960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509910020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509910080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509910140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509910200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509910260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509910320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509910380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509910440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509910500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509910560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509910620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509910680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509910740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509910800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509910860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509910920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509910980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509911040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509911100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509911160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509911220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509911280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509911340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509911400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509911460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509911520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509911580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509911640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509911700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509911760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509911820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509911880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509911940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509912000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509912060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509912120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509912180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509912240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509912300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509912360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509912420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509912480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509912540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509912600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509912660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509912720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509912780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509912840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509912900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509912960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509913020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509913080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509913140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509913200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509913260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509913320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509913380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509913440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509913500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509913560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509913620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509913680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509913740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509913800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509913860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509913920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509913980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509914040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509914100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509914160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509914220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509914280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509914340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509914400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509914460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509914520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509914580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509914640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509914700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509914760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509914820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509914880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509914940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509915000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509915060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509915120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509915180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509915240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509915300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509915360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509915420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509915480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509915540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509915600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509915660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509915720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509915780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509915840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509915900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509915960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509916020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509916080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509916140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509916200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509916260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509916320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509916380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509916440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509916500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509916560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509916620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509916680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509916740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509916800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509916860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509916920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509916980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509917040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509917100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509917160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509917220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509917280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509917340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509917400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509917460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509917520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509917580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509917640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509917700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509917760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509917820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509917880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509917940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509918000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509918060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509918120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509918180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509918240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509918300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509918360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509918420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509918480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509918540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509918600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509918660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509918720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509918780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509918840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509918900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509918960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509919020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509919080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509919140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509919200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509919260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509919320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509919380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509919440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509919500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509919560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509919620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509919680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509919740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509919800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509919860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509919920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509919980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509920040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509920100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509920160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509920220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509920280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509920340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509920400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509920460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509920520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509920580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509920640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509920700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509920760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509920820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509920880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509920940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509921000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509921060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509921120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509921180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509921240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509921300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509921360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509921420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509921480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509921540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509921600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509921660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509921720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509921780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509921840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509921900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509921960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509922020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509922080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509922140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509922200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509922260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509922320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509922380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509922440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509922500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509922560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509922620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509922680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509922740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509922800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509922860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509922920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509922980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509923040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509923100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509923160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509923220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509923280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509923340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509923400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509923460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509923520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509923580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509923640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509923700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509923760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509923820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509923880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509923940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509924000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509924060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509924120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509924180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509924240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509924300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509924360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509924420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509924480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509924540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509924600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509924660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509924720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509924780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509924840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509924900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509924960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509925020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509925080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509925140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509925200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509925260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509925320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509925380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509925440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509925500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509925560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509925620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509925680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509925740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509925800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509925860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509925920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509925980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509926040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509926100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509926160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509926220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509926280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509926340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509926400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509926460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509926520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509926580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509926640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509926700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509926760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509926820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509926880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509926940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509927000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509927060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509927120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509927180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509927240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509927300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509927360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509927420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509927480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509927540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509927600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509927660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509927720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509927780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509927840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509927900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509927960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509928020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509928080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509928140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509928200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509928260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509928320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509928380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509928440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509928500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509928560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509928620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509928680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509928740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509928800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509928860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509928920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509928980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509929040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509929100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509929160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509929220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509929280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509929340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509929400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509929460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509929520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509929580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509929640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509929700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509929760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509929820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509929880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509929940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509930000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509930060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509930120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509930180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509930240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509930300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509930360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509930420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509930480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509930540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509930600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509930660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509930720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509930780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509930840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509930900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509930960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509931020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509931080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509931140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509931200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509931260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509931320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509931380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509931440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509931500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509931560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509931620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509931680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509931740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509931800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509931860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509931920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509931980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509932040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509932100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509932160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509932220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509932280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509932340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509932400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509932460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509932520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509932580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509932640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509932700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509932760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509932820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509932880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509932940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509933000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509933060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509933120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509933180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509933240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509933300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509933360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509933420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509933480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509933540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509933600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509933660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509933720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509933780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509933840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509933900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509933960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509934020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509934080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509934140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509934200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509934260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509934320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509934380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509934440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509934500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509934560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509934620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509934680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509934740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509934800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509934860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509934920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509934980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509935040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509935100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509935160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509935220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509935280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509935340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509935400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509935460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509935520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509935580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509935640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509935700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509935760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509935820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509935880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509935940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509936000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509936060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509936120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509936180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509936240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509936300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509936360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509936420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509936480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509936540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509936600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509936660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509936720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509936780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509936840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509936900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509936960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509937020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509937080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509937140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509937200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509937260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509937320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509937380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509937440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509937500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509937560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509937620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509937680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509937740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509937800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509937860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509937920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509937980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509938040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509938100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509938160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509938220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509938280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509938340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509938400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509938460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509938520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509938580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509938640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509938700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509938760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509938820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509938880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509938940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509939000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509939060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509939120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509939180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509939240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509939300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509939360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509939420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509939480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509939540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509939600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509939660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509939720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509939780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509939840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509939900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509939960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509940020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509940080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509940140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509940200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509940260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509940320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509940380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509940440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509940500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509940560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509940620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509940680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509940740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509940800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509940860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509940920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509940980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509941040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509941100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509941160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509941220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509941280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509941340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509941400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509941460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509941520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509941580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509941640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509941700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509941760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509941820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509941880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509941940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509942000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509942060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509942120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509942180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509942240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509942300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509942360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509942420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509942480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509942540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509942600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509942660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509942720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509942780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509942840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509942900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509942960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509943020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509943080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509943140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509943200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509943260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509943320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509943380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509943440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509943500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509943560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509943620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509943680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509943740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509943800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509943860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509943920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509943980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509944040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509944100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509944160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509944220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509944280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509944340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509944400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509944460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509944520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509944580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509944640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509944700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509944760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509944820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509944880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509944940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509945000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509945060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509945120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509945180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509945240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509945300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509945360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509945420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509945480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509945540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509945600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509945660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509945720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509945780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509945840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509945900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509945960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509946020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509946080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509946140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509946200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509946260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509946320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509946380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509946440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509946500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509946560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509946620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509946680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509946740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509946800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509946860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509946920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509946980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509947040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509947100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509947160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509947220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509947280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509947340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509947400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509947460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509947520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509947580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509947640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509947700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509947760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509947820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509947880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509947940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509948000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509948060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509948120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509948180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509948240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509948300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509948360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509948420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509948480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509948540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509948600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509948660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509948720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509948780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509948840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509948900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509948960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509949020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509949080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509949140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509949200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509949260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509949320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509949380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509949440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509949500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509949560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509949620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509949680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509949740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509949800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509949860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509949920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509949980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509950040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509950100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509950160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509950220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509950280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509950340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509950400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509950460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509950520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509950580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509950640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509950700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509950760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509950820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509950880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509950940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509951000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509951060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509951120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509951180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509951240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509951300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509951360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509951420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509951480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509951540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509951600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509951660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509951720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509951780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509951840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509951900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509951960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509952020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509952080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509952140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509952200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509952260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509952320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509952380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509952440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509952500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509952560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509952620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509952680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509952740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509952800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509952860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509952920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509952980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509953040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509953100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509953160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509953220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509953280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509953340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509953400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509953460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509953520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509953580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509953640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509953700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509953760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509953820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509953880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509953940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509954000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509954060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509954120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509954180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509954240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509954300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509954360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509954420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509954480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509954540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509954600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509954660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509954720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509954780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509954840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509954900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509954960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509955020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509955080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509955140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509955200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509955260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509955320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509955380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509955440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509955500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509955560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509955620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509955680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509955740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509955800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509955860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509955920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509955980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509956040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509956100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509956160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509956220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509956280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509956340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509956400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509956460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509956520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509956580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509956640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509956700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509956760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509956820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509956880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509956940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509957000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509957060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509957120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509957180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509957240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509957300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509957360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509957420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509957480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509957540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509957600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509957660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509957720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509957780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509957840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509957900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509957960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509958020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509958080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509958140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509958200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509958260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509958320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509958380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509958440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509958500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509958560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509958620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509958680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509958740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509958800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509958860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509958920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509958980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509959040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509959100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509959160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509959220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509959280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509959340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509959400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509959460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509959520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509959580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509959640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509959700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509959760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509959820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509959880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509959940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509960000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509960060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509960120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509960180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509960240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509960300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509960360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509960420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509960480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509960540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509960600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509960660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509960720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509960780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509960840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509960900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509960960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509961020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509961080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509961140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509961200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509961260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509961320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509961380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509961440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509961500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509961560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509961620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509961680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509961740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509961800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509961860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509961920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509961980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509962040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509962100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509962160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509962220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509962280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509962340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509962400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509962460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509962520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509962580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509962640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509962700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509962760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509962820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509962880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509962940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509963000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509963060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509963120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509963180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509963240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509963300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509963360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509963420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509963480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509963540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509963600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509963660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509963720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509963780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509963840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509963900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509963960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509964020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509964080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509964140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509964200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509964260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509964320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509964380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509964440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509964500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509964560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509964620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509964680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509964740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509964800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509964860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509964920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509964980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509965040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509965100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509965160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509965220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509965280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509965340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509965400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509965460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509965520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509965580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509965640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509965700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509965760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509965820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509965880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509965940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509966000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509966060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509966120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509966180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509966240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509966300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509966360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509966420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509966480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509966540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509966600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509966660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509966720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509966780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509966840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509966900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509966960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509967020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509967080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509967140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509967200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509967260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509967320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509967380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509967440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509967500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509967560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509967620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509967680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509967740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509967800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509967860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509967920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509967980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509968040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509968100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509968160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509968220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509968280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509968340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509968400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509968460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509968520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509968580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509968640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509968700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509968760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509968820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509968880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509968940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509969000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509969060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509969120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509969180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509969240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509969300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509969360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509969420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509969480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509969540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509969600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509969660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509969720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509969780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509969840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509969900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509969960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509970020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509970080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509970140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509970200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509970260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509970320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509970380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509970440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509970500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509970560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509970620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509970680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509970740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509970800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509970860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509970920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509970980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509971040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509971100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509971160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509971220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509971280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509971340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509971400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509971460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509971520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509971580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509971640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509971700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509971760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509971820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509971880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509971940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509972000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509972060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509972120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509972180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509972240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509972300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509972360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509972420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509972480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509972540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509972600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509972660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509972720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509972780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509972840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509972900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509972960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509973020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509973080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509973140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509973200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509973260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509973320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509973380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509973440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509973500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509973560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509973620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509973680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509973740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509973800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509973860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509973920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509973980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509974040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509974100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509974160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509974220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509974280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509974340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509974400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509974460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509974520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509974580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509974640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509974700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509974760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509974820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509974880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509974940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509975000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509975060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509975120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509975180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509975240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509975300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509975360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509975420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509975480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509975540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509975600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509975660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509975720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509975780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509975840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509975900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509975960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509976020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509976080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509976140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509976200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509976260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509976320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509976380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509976440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509976500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509976560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509976620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509976680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509976740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509976800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509976860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509976920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509976980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509977040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509977100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509977160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509977220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509977280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509977340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509977400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509977460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509977520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509977580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509977640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509977700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509977760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509977820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509977880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509977940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509978000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509978060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509978120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509978180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509978240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509978300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509978360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509978420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509978480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509978540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509978600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509978660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509978720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509978780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509978840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509978900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509978960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509979020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509979080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509979140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509979200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509979260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509979320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509979380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509979440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509979500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509979560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509979620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509979680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509979740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509979800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509979860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509979920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509979980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509980040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509980100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509980160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509980220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509980280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509980340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509980400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509980460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509980520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509980580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509980640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509980700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509980760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509980820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509980880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509980940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509981000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509981060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509981120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509981180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509981240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509981300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509981360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509981420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509981480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509981540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509981600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509981660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509981720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509981780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509981840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509981900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509981960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509982020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509982080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509982140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509982200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509982260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509982320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509982380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509982440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509982500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509982560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509982620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509982680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509982740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509982800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509982860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509982920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509982980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509983040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509983100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509983160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509983220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509983280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509983340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509983400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509983460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509983520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509983580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509983640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509983700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509983760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509983820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509983880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509983940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509984000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509984060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509984120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509984180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509984240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509984300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509984360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509984420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509984480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509984540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509984600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509984660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509984720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509984780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509984840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509984900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509984960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509985020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509985080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509985140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509985200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509985260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509985320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509985380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509985440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509985500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509985560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509985620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509985680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509985740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509985800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509985860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509985920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509985980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509986040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509986100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509986160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509986220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509986280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509986340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509986400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509986460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509986520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509986580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509986640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509986700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509986760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509986820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509986880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509986940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509987000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509987060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509987120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509987180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509987240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509987300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509987360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509987420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509987480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509987540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509987600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509987660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509987720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509987780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509987840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509987900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509987960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509988020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509988080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509988140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509988200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509988260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509988320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509988380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509988440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509988500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509988560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509988620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509988680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509988740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509988800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509988860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509988920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509988980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509989040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509989100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509989160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509989220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509989280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509989340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509989400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509989460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509989520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509989580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509989640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509989700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509989760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509989820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509989880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509989940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509990000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509990060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509990120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509990180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509990240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509990300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509990360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509990420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509990480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509990540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509990600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509990660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509990720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509990780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509990840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509990900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509990960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509991020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509991080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509991140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509991200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509991260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509991320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509991380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509991440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509991500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509991560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509991620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509991680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509991740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509991800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509991860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509991920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509991980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509992040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509992100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509992160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509992220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509992280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509992340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509992400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509992460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509992520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509992580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509992640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509992700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509992760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509992820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509992880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509992940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509993000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509993060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509993120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509993180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509993240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509993300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509993360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509993420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509993480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509993540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509993600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509993660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509993720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509993780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509993840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509993900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509993960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509994020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509994080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509994140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509994200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509994260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509994320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509994380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509994440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509994500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509994560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509994620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509994680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509994740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509994800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509994860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509994920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509994980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509995040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509995100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509995160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509995220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509995280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509995340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509995400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509995460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509995520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509995580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509995640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509995700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509995760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509995820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509995880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509995940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509996000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509996060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509996120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509996180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509996240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509996300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509996360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509996420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509996480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509996540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509996600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509996660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509996720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509996780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509996840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509996900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509996960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509997020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509997080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509997140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509997200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509997260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509997320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509997380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509997440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509997500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509997560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509997620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509997680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509997740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509997800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509997860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509997920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509997980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509998040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509998100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509998160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509998220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509998280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509998340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509998400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509998460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509998520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509998580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509998640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509998700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509998760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509998820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509998880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509998940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509999000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509999060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509999120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509999180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509999240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509999300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509999360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509999420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509999480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509999540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509999600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509999660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509999720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1509999780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509999840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509999900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1509999960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510000020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510000080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510000140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510000200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510000260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510000320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510000380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510000440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510000500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510000560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510000620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510000680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510000740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510000800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510000860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510000920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510000980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510001040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510001100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510001160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510001220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510001280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510001340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510001400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510001460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510001520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510001580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510001640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510001700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510001760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510001820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510001880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510001940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510002000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510002060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510002120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510002180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510002240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510002300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510002360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510002420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510002480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510002540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510002600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510002660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510002720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510002780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510002840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510002900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510002960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510003020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510003080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510003140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510003200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510003260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510003320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510003380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510003440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510003500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510003560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510003620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510003680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510003740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510003800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510003860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510003920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510003980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510004040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510004100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510004160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510004220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510004280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510004340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510004400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510004460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510004520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510004580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510004640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510004700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510004760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510004820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510004880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510004940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510005000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510005060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510005120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510005180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510005240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510005300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510005360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510005420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510005480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510005540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510005600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510005660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510005720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510005780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510005840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510005900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510005960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510006020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510006080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510006140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510006200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510006260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510006320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510006380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510006440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510006500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510006560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510006620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510006680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510006740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510006800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510006860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510006920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510006980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510007040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510007100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510007160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510007220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510007280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510007340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510007400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510007460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510007520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510007580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510007640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510007700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510007760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510007820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510007880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510007940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510008000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510008060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510008120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510008180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510008240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510008300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510008360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510008420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510008480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510008540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510008600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510008660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510008720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510008780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510008840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510008900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510008960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510009020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510009080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510009140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510009200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510009260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510009320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510009380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510009440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510009500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510009560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510009620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510009680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510009740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510009800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510009860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510009920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510009980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510010040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510010100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510010160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510010220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510010280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510010340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510010400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510010460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510010520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510010580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510010640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510010700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510010760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510010820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510010880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510010940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510011000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510011060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510011120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510011180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510011240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510011300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510011360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510011420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510011480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510011540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510011600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510011660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510011720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510011780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510011840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510011900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510011960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510012020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510012080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510012140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510012200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510012260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510012320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510012380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510012440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510012500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510012560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510012620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510012680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510012740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510012800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510012860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510012920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510012980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510013040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510013100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510013160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510013220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510013280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510013340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510013400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510013460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510013520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510013580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510013640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510013700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510013760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510013820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510013880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510013940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510014000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510014060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510014120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510014180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510014240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510014300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510014360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510014420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510014480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510014540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510014600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510014660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510014720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510014780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510014840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510014900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510014960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510015020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510015080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510015140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510015200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510015260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510015320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510015380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510015440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510015500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510015560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510015620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510015680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510015740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510015800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510015860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510015920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510015980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510016040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510016100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510016160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510016220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510016280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510016340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510016400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510016460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510016520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510016580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510016640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510016700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510016760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510016820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510016880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510016940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510017000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510017060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510017120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510017180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510017240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510017300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510017360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510017420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510017480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510017540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510017600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510017660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510017720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510017780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510017840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510017900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510017960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510018020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510018080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510018140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510018200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510018260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510018320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510018380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510018440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510018500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510018560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510018620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510018680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510018740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510018800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510018860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510018920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510018980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510019040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510019100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510019160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510019220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510019280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510019340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510019400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510019460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510019520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510019580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510019640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510019700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510019760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510019820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510019880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510019940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510020000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510020060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510020120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510020180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510020240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510020300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510020360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510020420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510020480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510020540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510020600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510020660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510020720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510020780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510020840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510020900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510020960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510021020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510021080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510021140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510021200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510021260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510021320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510021380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510021440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510021500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510021560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510021620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510021680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510021740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510021800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510021860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510021920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510021980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510022040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510022100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510022160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510022220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510022280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510022340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510022400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510022460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510022520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510022580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510022640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510022700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510022760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510022820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510022880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510022940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510023000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510023060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510023120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510023180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510023240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510023300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510023360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510023420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510023480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510023540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510023600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510023660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510023720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510023780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510023840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510023900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510023960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510024020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510024080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510024140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510024200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510024260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510024320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510024380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510024440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510024500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510024560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510024620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510024680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510024740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510024800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510024860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510024920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510024980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510025040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510025100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510025160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510025220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510025280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510025340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510025400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510025460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510025520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510025580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510025640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510025700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510025760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510025820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510025880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510025940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510026000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510026060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510026120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510026180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510026240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510026300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510026360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510026420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510026480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510026540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510026600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510026660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510026720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510026780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510026840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510026900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510026960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510027020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510027080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510027140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510027200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510027260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510027320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510027380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510027440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510027500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510027560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510027620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510027680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510027740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510027800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510027860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510027920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510027980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510028040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510028100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510028160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510028220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510028280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510028340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510028400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510028460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510028520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510028580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510028640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510028700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510028760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510028820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510028880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510028940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510029000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510029060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510029120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510029180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510029240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510029300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510029360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510029420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510029480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510029540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510029600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510029660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510029720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510029780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510029840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510029900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510029960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510030020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510030080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510030140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510030200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510030260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510030320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510030380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510030440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510030500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510030560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510030620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510030680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510030740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510030800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510030860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510030920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510030980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510031040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510031100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510031160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510031220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510031280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510031340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510031400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510031460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510031520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510031580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510031640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510031700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510031760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510031820000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510031880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510031940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510032000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510032060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510032120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510032180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510032240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510032300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510032360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510032420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510032480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510032540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510032600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510032660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510032720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510032780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510032840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510032900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510032960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510033020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510033080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510033140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510033200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510033260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510033320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510033380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510033440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510033500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510033560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510033620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510033680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510033740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510033800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510033860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510033920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510033980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510034040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510034100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510034160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510034220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510034280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510034340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510034400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510034460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510034520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510034580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510034640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510034700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510034760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510034820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510034880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510034940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510035000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510035060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510035120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510035180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510035240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510035300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510035360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510035420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510035480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510035540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510035600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510035660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510035720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510035780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510035840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510035900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510035960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510036020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510036080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510036140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510036200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510036260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510036320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510036380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510036440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510036500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510036560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510036620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510036680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510036740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510036800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510036860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510036920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510036980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510037040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510037100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510037160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510037220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510037280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510037340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510037400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510037460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510037520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510037580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510037640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510037700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510037760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510037820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510037880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510037940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510038000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510038060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510038120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510038180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510038240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510038300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510038360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510038420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510038480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510038540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510038600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510038660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510038720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510038780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510038840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510038900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510038960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510039020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510039080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510039140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510039200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510039260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510039320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510039380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510039440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510039500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510039560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510039620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510039680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510039740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510039800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510039860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510039920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510039980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510040040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510040100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510040160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510040220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510040280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510040340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510040400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510040460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510040520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510040580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510040640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510040700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510040760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510040820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510040880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510040940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510041000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510041060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510041120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510041180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510041240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510041300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510041360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510041420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510041480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510041540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510041600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510041660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510041720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510041780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510041840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510041900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510041960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510042020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510042080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510042140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510042200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510042260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510042320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510042380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510042440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510042500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510042560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510042620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510042680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510042740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510042800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510042860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510042920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510042980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510043040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510043100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510043160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510043220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510043280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510043340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510043400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510043460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510043520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510043580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510043640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510043700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510043760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510043820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510043880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510043940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510044000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510044060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510044120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510044180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510044240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510044300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510044360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510044420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510044480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510044540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510044600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510044660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510044720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510044780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510044840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510044900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510044960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510045020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510045080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510045140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510045200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510045260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510045320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510045380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510045440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510045500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510045560000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510045620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510045680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510045740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510045800000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510045860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510045920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510045980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510046040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510046100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510046160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510046220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510046280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510046340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510046400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510046460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510046520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510046580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510046640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510046700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510046760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510046820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510046880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510046940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510047000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510047060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510047120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510047180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510047240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510047300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510047360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510047420000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510047480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510047540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510047600000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510047660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510047720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510047780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510047840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510047900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510047960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510048020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510048080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510048140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510048200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510048260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510048320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510048380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510048440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510048500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510048560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510048620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510048680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510048740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510048800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510048860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510048920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510048980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510049040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510049100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510049160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510049220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510049280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510049340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510049400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510049460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510049520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510049580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510049640000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510049700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510049760000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510049820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510049880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510049940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510050000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510050060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510050120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510050180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510050240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510050300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510050360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510050420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510050480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510050540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510050600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510050660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510050720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510050780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510050840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510050900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510050960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510051020000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510051080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510051140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510051200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510051260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510051320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510051380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510051440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510051500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510051560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510051620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510051680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510051740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510051800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510051860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510051920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510051980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510052040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510052100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510052160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510052220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510052280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510052340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510052400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510052460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510052520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510052580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510052640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510052700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510052760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510052820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510052880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510052940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510053000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510053060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510053120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510053180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510053240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510053300000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510053360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510053420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510053480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510053540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510053600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510053660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510053720000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510053780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510053840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510053900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510053960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510054020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510054080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510054140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510054200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510054260000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510054320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510054380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510054440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510054500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510054560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510054620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510054680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510054740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510054800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510054860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510054920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510054980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510055040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510055100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510055160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510055220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510055280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510055340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510055400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510055460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510055520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510055580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510055640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510055700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510055760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510055820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510055880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510055940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510056000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510056060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510056120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510056180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510056240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510056300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510056360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510056420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510056480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510056540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510056600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510056660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510056720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510056780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510056840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510056900000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510056960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510057020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510057080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510057140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510057200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510057260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510057320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510057380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510057440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510057500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510057560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510057620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510057680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510057740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510057800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510057860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510057920000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510057980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510058040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510058100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510058160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510058220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510058280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510058340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510058400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510058460000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510058520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510058580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510058640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510058700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510058760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510058820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510058880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510058940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510059000000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510059060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510059120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510059180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510059240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510059300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510059360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510059420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510059480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510059540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510059600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510059660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510059720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510059780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510059840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510059900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510059960000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510060020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510060080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510060140000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510060200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510060260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510060320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510060380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510060440000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510060500000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510060560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510060620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510060680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510060740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510060800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510060860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510060920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510060980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510061040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510061100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510061160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510061220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510061280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510061340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510061400000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510061460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510061520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510061580000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510061640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510061700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510061760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510061820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510061880000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510061940000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510062000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510062060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510062120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510062180000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510062240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510062300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510062360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510062420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510062480000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510062540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510062600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510062660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510062720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510062780000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510062840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510062900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510062960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510063020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510063080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510063140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510063200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510063260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510063320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510063380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510063440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510063500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510063560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510063620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510063680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510063740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510063800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510063860000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510063920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510063980000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510064040000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510064100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510064160000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510064220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510064280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510064340000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510064400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510064460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510064520000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510064580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510064640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510064700000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510064760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510064820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510064880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510064940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510065000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510065060000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510065120000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510065180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510065240000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510065300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510065360000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510065420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510065480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510065540000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510065600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510065660000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510065720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510065780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510065840000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510065900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510065960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510066020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510066080000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510066140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510066200000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510066260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510066320000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510066380000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510066440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510066500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510066560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510066620000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510066680000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510066740000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510066800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510066860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510066920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510066980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510067040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510067100000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510067160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510067220000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510067280000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510067340000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510067400000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510067460000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510067520000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510067580000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510067640000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510067700000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510067760000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510067820000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510067880000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510067940000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510068000000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510068060000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510068120000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510068180000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510068240000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510068300000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510068360000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510068420000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510068480000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510068540000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510068600000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510068660000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510068720000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510068780000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510068840000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510068900000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510068960000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510069020000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510069080000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510069140000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510069200000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510069260000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510069320000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510069380000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510069440000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510069500000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510069560000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510069620000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510069680000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510069740000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510069800000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510069860000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510069920000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510069980000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510070040000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510070100000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510070160000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510070220000,true) +insert into root.ln.wf02.wt02(timestamp,status) values(1510070280000,false) +insert into root.ln.wf02.wt02(timestamp,status) values(1510070340000,false) +set storage group to root.sgcc +create timeseries root.sgcc.wf03.wt01.status with datatype=BOOLEAN,encoding=PLAIN +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509465600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509465660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509465720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509465780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509465840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509465900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509465960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509466020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509466080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509466140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509466200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509466260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509466320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509466380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509466440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509466500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509466560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509466620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509466680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509466740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509466800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509466860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509466920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509466980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509467040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509467100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509467160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509467220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509467280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509467340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509467400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509467460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509467520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509467580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509467640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509467700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509467760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509467820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509467880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509467940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509468000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509468060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509468120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509468180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509468240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509468300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509468360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509468420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509468480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509468540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509468600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509468660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509468720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509468780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509468840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509468900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509468960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509469020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509469080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509469140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509469200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509469260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509469320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509469380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509469440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509469500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509469560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509469620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509469680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509469740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509469800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509469860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509469920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509469980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509470040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509470100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509470160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509470220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509470280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509470340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509470400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509470460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509470520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509470580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509470640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509470700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509470760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509470820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509470880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509470940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509471000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509471060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509471120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509471180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509471240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509471300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509471360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509471420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509471480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509471540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509471600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509471660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509471720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509471780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509471840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509471900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509471960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509472020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509472080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509472140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509472200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509472260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509472320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509472380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509472440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509472500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509472560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509472620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509472680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509472740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509472800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509472860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509472920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509472980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509473040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509473100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509473160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509473220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509473280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509473340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509473400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509473460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509473520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509473580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509473640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509473700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509473760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509473820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509473880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509473940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509474000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509474060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509474120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509474180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509474240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509474300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509474360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509474420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509474480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509474540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509474600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509474660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509474720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509474780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509474840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509474900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509474960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509475020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509475080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509475140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509475200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509475260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509475320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509475380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509475440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509475500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509475560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509475620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509475680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509475740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509475800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509475860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509475920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509475980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509476040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509476100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509476160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509476220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509476280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509476340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509476400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509476460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509476520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509476580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509476640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509476700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509476760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509476820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509476880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509476940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509477000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509477060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509477120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509477180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509477240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509477300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509477360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509477420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509477480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509477540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509477600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509477660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509477720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509477780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509477840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509477900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509477960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509478020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509478080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509478140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509478200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509478260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509478320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509478380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509478440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509478500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509478560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509478620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509478680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509478740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509478800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509478860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509478920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509478980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509479040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509479100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509479160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509479220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509479280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509479340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509479400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509479460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509479520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509479580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509479640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509479700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509479760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509479820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509479880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509479940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509480000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509480060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509480120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509480180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509480240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509480300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509480360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509480420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509480480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509480540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509480600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509480660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509480720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509480780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509480840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509480900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509480960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509481020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509481080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509481140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509481200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509481260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509481320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509481380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509481440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509481500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509481560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509481620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509481680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509481740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509481800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509481860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509481920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509481980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509482040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509482100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509482160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509482220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509482280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509482340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509482400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509482460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509482520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509482580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509482640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509482700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509482760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509482820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509482880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509482940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509483000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509483060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509483120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509483180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509483240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509483300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509483360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509483420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509483480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509483540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509483600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509483660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509483720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509483780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509483840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509483900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509483960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509484020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509484080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509484140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509484200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509484260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509484320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509484380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509484440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509484500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509484560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509484620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509484680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509484740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509484800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509484860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509484920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509484980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509485040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509485100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509485160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509485220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509485280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509485340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509485400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509485460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509485520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509485580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509485640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509485700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509485760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509485820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509485880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509485940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509486000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509486060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509486120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509486180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509486240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509486300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509486360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509486420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509486480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509486540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509486600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509486660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509486720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509486780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509486840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509486900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509486960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509487020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509487080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509487140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509487200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509487260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509487320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509487380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509487440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509487500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509487560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509487620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509487680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509487740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509487800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509487860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509487920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509487980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509488040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509488100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509488160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509488220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509488280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509488340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509488400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509488460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509488520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509488580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509488640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509488700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509488760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509488820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509488880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509488940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509489000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509489060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509489120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509489180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509489240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509489300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509489360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509489420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509489480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509489540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509489600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509489660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509489720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509489780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509489840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509489900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509489960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509490020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509490080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509490140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509490200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509490260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509490320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509490380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509490440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509490500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509490560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509490620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509490680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509490740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509490800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509490860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509490920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509490980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509491040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509491100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509491160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509491220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509491280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509491340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509491400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509491460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509491520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509491580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509491640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509491700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509491760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509491820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509491880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509491940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509492000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509492060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509492120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509492180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509492240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509492300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509492360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509492420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509492480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509492540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509492600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509492660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509492720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509492780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509492840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509492900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509492960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509493020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509493080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509493140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509493200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509493260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509493320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509493380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509493440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509493500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509493560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509493620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509493680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509493740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509493800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509493860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509493920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509493980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509494040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509494100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509494160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509494220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509494280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509494340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509494400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509494460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509494520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509494580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509494640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509494700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509494760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509494820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509494880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509494940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509495000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509495060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509495120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509495180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509495240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509495300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509495360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509495420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509495480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509495540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509495600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509495660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509495720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509495780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509495840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509495900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509495960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509496020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509496080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509496140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509496200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509496260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509496320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509496380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509496440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509496500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509496560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509496620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509496680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509496740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509496800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509496860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509496920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509496980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509497040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509497100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509497160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509497220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509497280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509497340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509497400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509497460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509497520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509497580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509497640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509497700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509497760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509497820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509497880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509497940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509498000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509498060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509498120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509498180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509498240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509498300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509498360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509498420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509498480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509498540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509498600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509498660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509498720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509498780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509498840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509498900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509498960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509499020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509499080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509499140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509499200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509499260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509499320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509499380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509499440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509499500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509499560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509499620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509499680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509499740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509499800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509499860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509499920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509499980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509500040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509500100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509500160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509500220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509500280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509500340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509500400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509500460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509500520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509500580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509500640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509500700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509500760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509500820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509500880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509500940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509501000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509501060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509501120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509501180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509501240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509501300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509501360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509501420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509501480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509501540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509501600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509501660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509501720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509501780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509501840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509501900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509501960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509502020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509502080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509502140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509502200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509502260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509502320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509502380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509502440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509502500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509502560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509502620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509502680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509502740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509502800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509502860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509502920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509502980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509503040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509503100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509503160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509503220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509503280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509503340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509503400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509503460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509503520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509503580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509503640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509503700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509503760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509503820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509503880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509503940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509504000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509504060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509504120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509504180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509504240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509504300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509504360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509504420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509504480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509504540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509504600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509504660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509504720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509504780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509504840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509504900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509504960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509505020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509505080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509505140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509505200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509505260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509505320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509505380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509505440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509505500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509505560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509505620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509505680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509505740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509505800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509505860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509505920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509505980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509506040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509506100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509506160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509506220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509506280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509506340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509506400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509506460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509506520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509506580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509506640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509506700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509506760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509506820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509506880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509506940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509507000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509507060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509507120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509507180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509507240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509507300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509507360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509507420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509507480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509507540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509507600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509507660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509507720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509507780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509507840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509507900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509507960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509508020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509508080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509508140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509508200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509508260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509508320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509508380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509508440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509508500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509508560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509508620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509508680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509508740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509508800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509508860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509508920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509508980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509509040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509509100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509509160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509509220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509509280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509509340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509509400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509509460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509509520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509509580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509509640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509509700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509509760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509509820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509509880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509509940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509510000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509510060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509510120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509510180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509510240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509510300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509510360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509510420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509510480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509510540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509510600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509510660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509510720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509510780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509510840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509510900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509510960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509511020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509511080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509511140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509511200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509511260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509511320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509511380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509511440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509511500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509511560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509511620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509511680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509511740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509511800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509511860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509511920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509511980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509512040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509512100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509512160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509512220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509512280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509512340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509512400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509512460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509512520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509512580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509512640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509512700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509512760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509512820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509512880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509512940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509513000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509513060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509513120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509513180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509513240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509513300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509513360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509513420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509513480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509513540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509513600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509513660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509513720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509513780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509513840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509513900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509513960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509514020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509514080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509514140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509514200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509514260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509514320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509514380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509514440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509514500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509514560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509514620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509514680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509514740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509514800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509514860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509514920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509514980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509515040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509515100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509515160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509515220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509515280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509515340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509515400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509515460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509515520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509515580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509515640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509515700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509515760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509515820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509515880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509515940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509516000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509516060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509516120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509516180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509516240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509516300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509516360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509516420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509516480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509516540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509516600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509516660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509516720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509516780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509516840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509516900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509516960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509517020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509517080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509517140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509517200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509517260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509517320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509517380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509517440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509517500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509517560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509517620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509517680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509517740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509517800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509517860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509517920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509517980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509518040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509518100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509518160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509518220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509518280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509518340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509518400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509518460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509518520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509518580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509518640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509518700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509518760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509518820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509518880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509518940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509519000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509519060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509519120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509519180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509519240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509519300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509519360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509519420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509519480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509519540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509519600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509519660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509519720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509519780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509519840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509519900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509519960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509520020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509520080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509520140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509520200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509520260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509520320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509520380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509520440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509520500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509520560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509520620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509520680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509520740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509520800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509520860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509520920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509520980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509521040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509521100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509521160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509521220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509521280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509521340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509521400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509521460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509521520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509521580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509521640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509521700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509521760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509521820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509521880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509521940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509522000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509522060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509522120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509522180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509522240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509522300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509522360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509522420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509522480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509522540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509522600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509522660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509522720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509522780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509522840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509522900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509522960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509523020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509523080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509523140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509523200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509523260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509523320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509523380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509523440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509523500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509523560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509523620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509523680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509523740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509523800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509523860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509523920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509523980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509524040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509524100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509524160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509524220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509524280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509524340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509524400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509524460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509524520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509524580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509524640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509524700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509524760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509524820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509524880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509524940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509525000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509525060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509525120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509525180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509525240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509525300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509525360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509525420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509525480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509525540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509525600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509525660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509525720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509525780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509525840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509525900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509525960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509526020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509526080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509526140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509526200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509526260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509526320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509526380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509526440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509526500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509526560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509526620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509526680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509526740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509526800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509526860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509526920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509526980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509527040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509527100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509527160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509527220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509527280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509527340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509527400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509527460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509527520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509527580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509527640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509527700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509527760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509527820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509527880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509527940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509528000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509528060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509528120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509528180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509528240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509528300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509528360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509528420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509528480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509528540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509528600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509528660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509528720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509528780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509528840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509528900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509528960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509529020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509529080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509529140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509529200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509529260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509529320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509529380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509529440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509529500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509529560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509529620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509529680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509529740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509529800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509529860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509529920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509529980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509530040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509530100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509530160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509530220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509530280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509530340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509530400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509530460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509530520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509530580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509530640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509530700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509530760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509530820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509530880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509530940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509531000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509531060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509531120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509531180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509531240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509531300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509531360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509531420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509531480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509531540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509531600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509531660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509531720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509531780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509531840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509531900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509531960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509532020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509532080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509532140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509532200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509532260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509532320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509532380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509532440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509532500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509532560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509532620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509532680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509532740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509532800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509532860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509532920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509532980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509533040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509533100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509533160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509533220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509533280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509533340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509533400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509533460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509533520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509533580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509533640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509533700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509533760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509533820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509533880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509533940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509534000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509534060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509534120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509534180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509534240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509534300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509534360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509534420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509534480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509534540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509534600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509534660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509534720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509534780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509534840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509534900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509534960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509535020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509535080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509535140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509535200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509535260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509535320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509535380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509535440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509535500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509535560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509535620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509535680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509535740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509535800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509535860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509535920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509535980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509536040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509536100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509536160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509536220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509536280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509536340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509536400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509536460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509536520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509536580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509536640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509536700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509536760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509536820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509536880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509536940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509537000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509537060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509537120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509537180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509537240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509537300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509537360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509537420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509537480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509537540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509537600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509537660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509537720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509537780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509537840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509537900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509537960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509538020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509538080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509538140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509538200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509538260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509538320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509538380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509538440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509538500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509538560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509538620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509538680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509538740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509538800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509538860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509538920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509538980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509539040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509539100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509539160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509539220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509539280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509539340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509539400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509539460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509539520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509539580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509539640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509539700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509539760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509539820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509539880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509539940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509540000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509540060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509540120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509540180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509540240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509540300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509540360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509540420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509540480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509540540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509540600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509540660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509540720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509540780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509540840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509540900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509540960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509541020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509541080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509541140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509541200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509541260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509541320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509541380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509541440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509541500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509541560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509541620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509541680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509541740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509541800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509541860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509541920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509541980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509542040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509542100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509542160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509542220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509542280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509542340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509542400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509542460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509542520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509542580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509542640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509542700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509542760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509542820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509542880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509542940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509543000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509543060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509543120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509543180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509543240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509543300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509543360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509543420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509543480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509543540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509543600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509543660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509543720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509543780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509543840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509543900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509543960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509544020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509544080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509544140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509544200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509544260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509544320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509544380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509544440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509544500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509544560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509544620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509544680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509544740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509544800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509544860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509544920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509544980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509545040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509545100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509545160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509545220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509545280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509545340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509545400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509545460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509545520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509545580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509545640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509545700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509545760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509545820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509545880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509545940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509546000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509546060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509546120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509546180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509546240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509546300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509546360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509546420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509546480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509546540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509546600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509546660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509546720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509546780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509546840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509546900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509546960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509547020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509547080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509547140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509547200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509547260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509547320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509547380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509547440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509547500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509547560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509547620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509547680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509547740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509547800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509547860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509547920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509547980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509548040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509548100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509548160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509548220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509548280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509548340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509548400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509548460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509548520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509548580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509548640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509548700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509548760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509548820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509548880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509548940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509549000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509549060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509549120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509549180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509549240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509549300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509549360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509549420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509549480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509549540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509549600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509549660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509549720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509549780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509549840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509549900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509549960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509550020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509550080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509550140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509550200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509550260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509550320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509550380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509550440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509550500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509550560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509550620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509550680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509550740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509550800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509550860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509550920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509550980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509551040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509551100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509551160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509551220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509551280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509551340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509551400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509551460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509551520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509551580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509551640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509551700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509551760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509551820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509551880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509551940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509552000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509552060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509552120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509552180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509552240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509552300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509552360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509552420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509552480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509552540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509552600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509552660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509552720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509552780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509552840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509552900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509552960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509553020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509553080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509553140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509553200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509553260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509553320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509553380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509553440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509553500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509553560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509553620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509553680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509553740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509553800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509553860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509553920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509553980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509554040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509554100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509554160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509554220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509554280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509554340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509554400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509554460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509554520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509554580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509554640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509554700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509554760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509554820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509554880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509554940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509555000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509555060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509555120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509555180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509555240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509555300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509555360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509555420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509555480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509555540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509555600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509555660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509555720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509555780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509555840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509555900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509555960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509556020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509556080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509556140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509556200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509556260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509556320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509556380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509556440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509556500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509556560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509556620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509556680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509556740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509556800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509556860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509556920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509556980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509557040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509557100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509557160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509557220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509557280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509557340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509557400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509557460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509557520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509557580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509557640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509557700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509557760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509557820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509557880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509557940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509558000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509558060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509558120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509558180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509558240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509558300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509558360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509558420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509558480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509558540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509558600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509558660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509558720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509558780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509558840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509558900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509558960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509559020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509559080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509559140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509559200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509559260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509559320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509559380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509559440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509559500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509559560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509559620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509559680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509559740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509559800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509559860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509559920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509559980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509560040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509560100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509560160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509560220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509560280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509560340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509560400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509560460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509560520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509560580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509560640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509560700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509560760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509560820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509560880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509560940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509561000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509561060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509561120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509561180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509561240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509561300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509561360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509561420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509561480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509561540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509561600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509561660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509561720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509561780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509561840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509561900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509561960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509562020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509562080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509562140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509562200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509562260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509562320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509562380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509562440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509562500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509562560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509562620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509562680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509562740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509562800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509562860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509562920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509562980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509563040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509563100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509563160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509563220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509563280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509563340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509563400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509563460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509563520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509563580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509563640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509563700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509563760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509563820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509563880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509563940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509564000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509564060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509564120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509564180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509564240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509564300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509564360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509564420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509564480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509564540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509564600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509564660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509564720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509564780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509564840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509564900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509564960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509565020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509565080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509565140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509565200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509565260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509565320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509565380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509565440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509565500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509565560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509565620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509565680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509565740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509565800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509565860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509565920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509565980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509566040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509566100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509566160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509566220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509566280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509566340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509566400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509566460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509566520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509566580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509566640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509566700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509566760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509566820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509566880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509566940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509567000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509567060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509567120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509567180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509567240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509567300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509567360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509567420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509567480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509567540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509567600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509567660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509567720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509567780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509567840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509567900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509567960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509568020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509568080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509568140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509568200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509568260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509568320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509568380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509568440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509568500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509568560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509568620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509568680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509568740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509568800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509568860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509568920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509568980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509569040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509569100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509569160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509569220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509569280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509569340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509569400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509569460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509569520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509569580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509569640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509569700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509569760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509569820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509569880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509569940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509570000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509570060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509570120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509570180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509570240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509570300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509570360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509570420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509570480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509570540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509570600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509570660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509570720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509570780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509570840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509570900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509570960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509571020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509571080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509571140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509571200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509571260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509571320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509571380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509571440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509571500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509571560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509571620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509571680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509571740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509571800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509571860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509571920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509571980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509572040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509572100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509572160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509572220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509572280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509572340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509572400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509572460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509572520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509572580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509572640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509572700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509572760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509572820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509572880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509572940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509573000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509573060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509573120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509573180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509573240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509573300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509573360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509573420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509573480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509573540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509573600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509573660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509573720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509573780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509573840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509573900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509573960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509574020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509574080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509574140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509574200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509574260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509574320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509574380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509574440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509574500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509574560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509574620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509574680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509574740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509574800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509574860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509574920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509574980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509575040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509575100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509575160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509575220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509575280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509575340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509575400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509575460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509575520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509575580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509575640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509575700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509575760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509575820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509575880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509575940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509576000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509576060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509576120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509576180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509576240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509576300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509576360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509576420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509576480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509576540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509576600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509576660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509576720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509576780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509576840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509576900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509576960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509577020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509577080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509577140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509577200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509577260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509577320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509577380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509577440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509577500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509577560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509577620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509577680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509577740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509577800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509577860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509577920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509577980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509578040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509578100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509578160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509578220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509578280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509578340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509578400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509578460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509578520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509578580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509578640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509578700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509578760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509578820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509578880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509578940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509579000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509579060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509579120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509579180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509579240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509579300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509579360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509579420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509579480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509579540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509579600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509579660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509579720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509579780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509579840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509579900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509579960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509580020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509580080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509580140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509580200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509580260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509580320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509580380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509580440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509580500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509580560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509580620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509580680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509580740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509580800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509580860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509580920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509580980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509581040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509581100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509581160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509581220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509581280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509581340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509581400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509581460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509581520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509581580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509581640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509581700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509581760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509581820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509581880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509581940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509582000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509582060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509582120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509582180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509582240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509582300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509582360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509582420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509582480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509582540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509582600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509582660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509582720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509582780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509582840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509582900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509582960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509583020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509583080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509583140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509583200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509583260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509583320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509583380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509583440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509583500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509583560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509583620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509583680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509583740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509583800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509583860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509583920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509583980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509584040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509584100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509584160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509584220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509584280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509584340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509584400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509584460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509584520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509584580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509584640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509584700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509584760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509584820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509584880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509584940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509585000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509585060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509585120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509585180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509585240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509585300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509585360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509585420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509585480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509585540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509585600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509585660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509585720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509585780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509585840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509585900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509585960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509586020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509586080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509586140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509586200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509586260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509586320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509586380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509586440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509586500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509586560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509586620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509586680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509586740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509586800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509586860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509586920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509586980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509587040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509587100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509587160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509587220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509587280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509587340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509587400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509587460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509587520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509587580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509587640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509587700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509587760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509587820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509587880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509587940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509588000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509588060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509588120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509588180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509588240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509588300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509588360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509588420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509588480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509588540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509588600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509588660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509588720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509588780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509588840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509588900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509588960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509589020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509589080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509589140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509589200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509589260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509589320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509589380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509589440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509589500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509589560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509589620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509589680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509589740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509589800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509589860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509589920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509589980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509590040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509590100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509590160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509590220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509590280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509590340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509590400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509590460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509590520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509590580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509590640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509590700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509590760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509590820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509590880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509590940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509591000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509591060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509591120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509591180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509591240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509591300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509591360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509591420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509591480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509591540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509591600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509591660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509591720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509591780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509591840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509591900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509591960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509592020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509592080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509592140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509592200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509592260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509592320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509592380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509592440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509592500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509592560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509592620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509592680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509592740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509592800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509592860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509592920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509592980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509593040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509593100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509593160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509593220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509593280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509593340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509593400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509593460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509593520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509593580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509593640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509593700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509593760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509593820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509593880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509593940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509594000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509594060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509594120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509594180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509594240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509594300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509594360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509594420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509594480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509594540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509594600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509594660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509594720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509594780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509594840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509594900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509594960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509595020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509595080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509595140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509595200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509595260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509595320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509595380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509595440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509595500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509595560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509595620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509595680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509595740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509595800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509595860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509595920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509595980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509596040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509596100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509596160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509596220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509596280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509596340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509596400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509596460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509596520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509596580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509596640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509596700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509596760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509596820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509596880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509596940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509597000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509597060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509597120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509597180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509597240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509597300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509597360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509597420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509597480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509597540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509597600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509597660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509597720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509597780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509597840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509597900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509597960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509598020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509598080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509598140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509598200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509598260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509598320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509598380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509598440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509598500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509598560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509598620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509598680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509598740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509598800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509598860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509598920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509598980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509599040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509599100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509599160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509599220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509599280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509599340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509599400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509599460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509599520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509599580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509599640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509599700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509599760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509599820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509599880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509599940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509600000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509600060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509600120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509600180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509600240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509600300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509600360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509600420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509600480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509600540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509600600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509600660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509600720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509600780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509600840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509600900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509600960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509601020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509601080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509601140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509601200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509601260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509601320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509601380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509601440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509601500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509601560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509601620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509601680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509601740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509601800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509601860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509601920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509601980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509602040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509602100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509602160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509602220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509602280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509602340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509602400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509602460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509602520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509602580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509602640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509602700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509602760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509602820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509602880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509602940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509603000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509603060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509603120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509603180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509603240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509603300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509603360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509603420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509603480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509603540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509603600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509603660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509603720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509603780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509603840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509603900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509603960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509604020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509604080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509604140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509604200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509604260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509604320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509604380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509604440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509604500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509604560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509604620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509604680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509604740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509604800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509604860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509604920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509604980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509605040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509605100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509605160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509605220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509605280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509605340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509605400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509605460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509605520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509605580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509605640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509605700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509605760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509605820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509605880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509605940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509606000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509606060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509606120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509606180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509606240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509606300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509606360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509606420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509606480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509606540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509606600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509606660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509606720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509606780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509606840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509606900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509606960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509607020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509607080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509607140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509607200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509607260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509607320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509607380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509607440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509607500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509607560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509607620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509607680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509607740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509607800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509607860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509607920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509607980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509608040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509608100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509608160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509608220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509608280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509608340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509608400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509608460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509608520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509608580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509608640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509608700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509608760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509608820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509608880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509608940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509609000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509609060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509609120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509609180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509609240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509609300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509609360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509609420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509609480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509609540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509609600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509609660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509609720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509609780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509609840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509609900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509609960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509610020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509610080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509610140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509610200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509610260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509610320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509610380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509610440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509610500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509610560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509610620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509610680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509610740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509610800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509610860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509610920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509610980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509611040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509611100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509611160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509611220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509611280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509611340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509611400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509611460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509611520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509611580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509611640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509611700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509611760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509611820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509611880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509611940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509612000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509612060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509612120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509612180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509612240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509612300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509612360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509612420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509612480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509612540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509612600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509612660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509612720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509612780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509612840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509612900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509612960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509613020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509613080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509613140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509613200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509613260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509613320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509613380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509613440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509613500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509613560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509613620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509613680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509613740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509613800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509613860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509613920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509613980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509614040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509614100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509614160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509614220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509614280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509614340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509614400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509614460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509614520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509614580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509614640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509614700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509614760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509614820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509614880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509614940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509615000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509615060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509615120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509615180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509615240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509615300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509615360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509615420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509615480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509615540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509615600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509615660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509615720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509615780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509615840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509615900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509615960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509616020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509616080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509616140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509616200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509616260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509616320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509616380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509616440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509616500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509616560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509616620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509616680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509616740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509616800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509616860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509616920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509616980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509617040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509617100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509617160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509617220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509617280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509617340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509617400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509617460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509617520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509617580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509617640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509617700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509617760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509617820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509617880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509617940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509618000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509618060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509618120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509618180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509618240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509618300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509618360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509618420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509618480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509618540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509618600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509618660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509618720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509618780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509618840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509618900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509618960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509619020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509619080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509619140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509619200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509619260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509619320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509619380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509619440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509619500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509619560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509619620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509619680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509619740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509619800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509619860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509619920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509619980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509620040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509620100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509620160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509620220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509620280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509620340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509620400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509620460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509620520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509620580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509620640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509620700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509620760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509620820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509620880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509620940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509621000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509621060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509621120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509621180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509621240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509621300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509621360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509621420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509621480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509621540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509621600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509621660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509621720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509621780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509621840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509621900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509621960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509622020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509622080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509622140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509622200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509622260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509622320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509622380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509622440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509622500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509622560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509622620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509622680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509622740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509622800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509622860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509622920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509622980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509623040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509623100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509623160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509623220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509623280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509623340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509623400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509623460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509623520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509623580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509623640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509623700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509623760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509623820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509623880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509623940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509624000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509624060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509624120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509624180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509624240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509624300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509624360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509624420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509624480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509624540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509624600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509624660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509624720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509624780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509624840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509624900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509624960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509625020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509625080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509625140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509625200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509625260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509625320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509625380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509625440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509625500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509625560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509625620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509625680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509625740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509625800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509625860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509625920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509625980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509626040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509626100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509626160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509626220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509626280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509626340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509626400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509626460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509626520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509626580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509626640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509626700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509626760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509626820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509626880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509626940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509627000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509627060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509627120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509627180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509627240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509627300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509627360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509627420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509627480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509627540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509627600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509627660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509627720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509627780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509627840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509627900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509627960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509628020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509628080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509628140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509628200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509628260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509628320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509628380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509628440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509628500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509628560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509628620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509628680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509628740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509628800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509628860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509628920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509628980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509629040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509629100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509629160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509629220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509629280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509629340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509629400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509629460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509629520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509629580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509629640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509629700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509629760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509629820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509629880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509629940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509630000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509630060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509630120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509630180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509630240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509630300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509630360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509630420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509630480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509630540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509630600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509630660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509630720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509630780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509630840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509630900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509630960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509631020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509631080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509631140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509631200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509631260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509631320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509631380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509631440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509631500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509631560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509631620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509631680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509631740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509631800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509631860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509631920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509631980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509632040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509632100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509632160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509632220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509632280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509632340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509632400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509632460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509632520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509632580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509632640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509632700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509632760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509632820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509632880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509632940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509633000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509633060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509633120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509633180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509633240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509633300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509633360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509633420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509633480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509633540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509633600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509633660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509633720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509633780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509633840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509633900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509633960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509634020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509634080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509634140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509634200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509634260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509634320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509634380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509634440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509634500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509634560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509634620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509634680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509634740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509634800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509634860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509634920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509634980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509635040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509635100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509635160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509635220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509635280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509635340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509635400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509635460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509635520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509635580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509635640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509635700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509635760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509635820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509635880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509635940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509636000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509636060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509636120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509636180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509636240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509636300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509636360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509636420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509636480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509636540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509636600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509636660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509636720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509636780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509636840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509636900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509636960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509637020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509637080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509637140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509637200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509637260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509637320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509637380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509637440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509637500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509637560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509637620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509637680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509637740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509637800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509637860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509637920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509637980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509638040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509638100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509638160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509638220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509638280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509638340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509638400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509638460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509638520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509638580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509638640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509638700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509638760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509638820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509638880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509638940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509639000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509639060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509639120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509639180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509639240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509639300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509639360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509639420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509639480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509639540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509639600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509639660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509639720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509639780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509639840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509639900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509639960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509640020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509640080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509640140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509640200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509640260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509640320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509640380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509640440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509640500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509640560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509640620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509640680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509640740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509640800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509640860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509640920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509640980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509641040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509641100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509641160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509641220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509641280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509641340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509641400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509641460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509641520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509641580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509641640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509641700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509641760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509641820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509641880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509641940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509642000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509642060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509642120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509642180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509642240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509642300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509642360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509642420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509642480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509642540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509642600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509642660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509642720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509642780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509642840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509642900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509642960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509643020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509643080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509643140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509643200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509643260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509643320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509643380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509643440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509643500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509643560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509643620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509643680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509643740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509643800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509643860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509643920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509643980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509644040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509644100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509644160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509644220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509644280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509644340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509644400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509644460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509644520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509644580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509644640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509644700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509644760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509644820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509644880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509644940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509645000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509645060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509645120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509645180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509645240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509645300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509645360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509645420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509645480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509645540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509645600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509645660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509645720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509645780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509645840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509645900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509645960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509646020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509646080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509646140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509646200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509646260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509646320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509646380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509646440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509646500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509646560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509646620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509646680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509646740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509646800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509646860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509646920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509646980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509647040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509647100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509647160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509647220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509647280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509647340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509647400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509647460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509647520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509647580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509647640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509647700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509647760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509647820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509647880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509647940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509648000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509648060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509648120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509648180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509648240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509648300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509648360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509648420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509648480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509648540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509648600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509648660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509648720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509648780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509648840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509648900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509648960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509649020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509649080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509649140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509649200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509649260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509649320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509649380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509649440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509649500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509649560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509649620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509649680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509649740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509649800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509649860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509649920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509649980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509650040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509650100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509650160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509650220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509650280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509650340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509650400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509650460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509650520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509650580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509650640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509650700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509650760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509650820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509650880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509650940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509651000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509651060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509651120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509651180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509651240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509651300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509651360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509651420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509651480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509651540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509651600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509651660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509651720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509651780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509651840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509651900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509651960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509652020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509652080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509652140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509652200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509652260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509652320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509652380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509652440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509652500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509652560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509652620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509652680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509652740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509652800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509652860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509652920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509652980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509653040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509653100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509653160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509653220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509653280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509653340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509653400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509653460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509653520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509653580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509653640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509653700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509653760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509653820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509653880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509653940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509654000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509654060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509654120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509654180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509654240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509654300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509654360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509654420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509654480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509654540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509654600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509654660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509654720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509654780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509654840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509654900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509654960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509655020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509655080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509655140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509655200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509655260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509655320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509655380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509655440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509655500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509655560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509655620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509655680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509655740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509655800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509655860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509655920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509655980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509656040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509656100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509656160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509656220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509656280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509656340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509656400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509656460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509656520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509656580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509656640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509656700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509656760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509656820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509656880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509656940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509657000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509657060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509657120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509657180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509657240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509657300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509657360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509657420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509657480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509657540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509657600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509657660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509657720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509657780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509657840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509657900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509657960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509658020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509658080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509658140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509658200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509658260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509658320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509658380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509658440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509658500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509658560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509658620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509658680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509658740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509658800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509658860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509658920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509658980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509659040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509659100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509659160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509659220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509659280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509659340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509659400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509659460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509659520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509659580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509659640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509659700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509659760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509659820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509659880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509659940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509660000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509660060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509660120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509660180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509660240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509660300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509660360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509660420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509660480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509660540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509660600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509660660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509660720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509660780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509660840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509660900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509660960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509661020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509661080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509661140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509661200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509661260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509661320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509661380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509661440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509661500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509661560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509661620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509661680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509661740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509661800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509661860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509661920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509661980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509662040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509662100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509662160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509662220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509662280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509662340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509662400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509662460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509662520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509662580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509662640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509662700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509662760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509662820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509662880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509662940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509663000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509663060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509663120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509663180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509663240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509663300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509663360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509663420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509663480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509663540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509663600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509663660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509663720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509663780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509663840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509663900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509663960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509664020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509664080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509664140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509664200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509664260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509664320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509664380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509664440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509664500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509664560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509664620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509664680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509664740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509664800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509664860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509664920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509664980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509665040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509665100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509665160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509665220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509665280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509665340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509665400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509665460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509665520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509665580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509665640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509665700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509665760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509665820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509665880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509665940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509666000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509666060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509666120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509666180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509666240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509666300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509666360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509666420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509666480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509666540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509666600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509666660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509666720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509666780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509666840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509666900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509666960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509667020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509667080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509667140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509667200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509667260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509667320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509667380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509667440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509667500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509667560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509667620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509667680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509667740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509667800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509667860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509667920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509667980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509668040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509668100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509668160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509668220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509668280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509668340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509668400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509668460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509668520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509668580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509668640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509668700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509668760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509668820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509668880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509668940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509669000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509669060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509669120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509669180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509669240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509669300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509669360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509669420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509669480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509669540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509669600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509669660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509669720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509669780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509669840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509669900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509669960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509670020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509670080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509670140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509670200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509670260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509670320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509670380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509670440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509670500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509670560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509670620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509670680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509670740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509670800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509670860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509670920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509670980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509671040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509671100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509671160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509671220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509671280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509671340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509671400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509671460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509671520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509671580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509671640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509671700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509671760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509671820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509671880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509671940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509672000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509672060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509672120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509672180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509672240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509672300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509672360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509672420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509672480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509672540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509672600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509672660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509672720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509672780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509672840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509672900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509672960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509673020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509673080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509673140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509673200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509673260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509673320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509673380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509673440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509673500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509673560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509673620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509673680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509673740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509673800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509673860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509673920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509673980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509674040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509674100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509674160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509674220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509674280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509674340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509674400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509674460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509674520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509674580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509674640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509674700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509674760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509674820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509674880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509674940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509675000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509675060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509675120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509675180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509675240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509675300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509675360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509675420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509675480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509675540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509675600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509675660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509675720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509675780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509675840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509675900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509675960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509676020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509676080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509676140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509676200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509676260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509676320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509676380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509676440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509676500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509676560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509676620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509676680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509676740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509676800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509676860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509676920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509676980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509677040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509677100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509677160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509677220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509677280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509677340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509677400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509677460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509677520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509677580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509677640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509677700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509677760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509677820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509677880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509677940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509678000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509678060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509678120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509678180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509678240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509678300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509678360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509678420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509678480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509678540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509678600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509678660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509678720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509678780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509678840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509678900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509678960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509679020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509679080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509679140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509679200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509679260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509679320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509679380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509679440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509679500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509679560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509679620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509679680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509679740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509679800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509679860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509679920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509679980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509680040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509680100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509680160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509680220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509680280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509680340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509680400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509680460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509680520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509680580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509680640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509680700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509680760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509680820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509680880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509680940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509681000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509681060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509681120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509681180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509681240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509681300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509681360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509681420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509681480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509681540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509681600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509681660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509681720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509681780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509681840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509681900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509681960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509682020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509682080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509682140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509682200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509682260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509682320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509682380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509682440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509682500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509682560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509682620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509682680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509682740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509682800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509682860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509682920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509682980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509683040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509683100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509683160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509683220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509683280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509683340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509683400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509683460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509683520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509683580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509683640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509683700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509683760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509683820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509683880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509683940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509684000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509684060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509684120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509684180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509684240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509684300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509684360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509684420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509684480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509684540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509684600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509684660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509684720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509684780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509684840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509684900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509684960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509685020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509685080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509685140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509685200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509685260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509685320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509685380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509685440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509685500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509685560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509685620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509685680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509685740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509685800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509685860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509685920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509685980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509686040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509686100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509686160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509686220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509686280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509686340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509686400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509686460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509686520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509686580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509686640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509686700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509686760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509686820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509686880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509686940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509687000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509687060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509687120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509687180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509687240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509687300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509687360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509687420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509687480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509687540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509687600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509687660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509687720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509687780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509687840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509687900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509687960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509688020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509688080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509688140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509688200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509688260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509688320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509688380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509688440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509688500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509688560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509688620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509688680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509688740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509688800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509688860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509688920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509688980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509689040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509689100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509689160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509689220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509689280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509689340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509689400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509689460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509689520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509689580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509689640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509689700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509689760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509689820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509689880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509689940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509690000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509690060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509690120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509690180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509690240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509690300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509690360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509690420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509690480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509690540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509690600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509690660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509690720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509690780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509690840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509690900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509690960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509691020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509691080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509691140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509691200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509691260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509691320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509691380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509691440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509691500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509691560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509691620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509691680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509691740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509691800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509691860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509691920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509691980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509692040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509692100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509692160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509692220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509692280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509692340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509692400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509692460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509692520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509692580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509692640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509692700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509692760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509692820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509692880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509692940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509693000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509693060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509693120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509693180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509693240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509693300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509693360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509693420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509693480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509693540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509693600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509693660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509693720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509693780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509693840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509693900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509693960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509694020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509694080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509694140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509694200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509694260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509694320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509694380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509694440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509694500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509694560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509694620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509694680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509694740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509694800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509694860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509694920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509694980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509695040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509695100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509695160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509695220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509695280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509695340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509695400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509695460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509695520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509695580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509695640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509695700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509695760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509695820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509695880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509695940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509696000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509696060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509696120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509696180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509696240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509696300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509696360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509696420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509696480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509696540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509696600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509696660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509696720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509696780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509696840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509696900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509696960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509697020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509697080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509697140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509697200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509697260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509697320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509697380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509697440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509697500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509697560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509697620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509697680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509697740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509697800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509697860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509697920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509697980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509698040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509698100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509698160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509698220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509698280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509698340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509698400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509698460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509698520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509698580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509698640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509698700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509698760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509698820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509698880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509698940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509699000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509699060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509699120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509699180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509699240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509699300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509699360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509699420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509699480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509699540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509699600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509699660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509699720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509699780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509699840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509699900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509699960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509700020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509700080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509700140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509700200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509700260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509700320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509700380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509700440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509700500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509700560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509700620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509700680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509700740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509700800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509700860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509700920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509700980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509701040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509701100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509701160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509701220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509701280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509701340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509701400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509701460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509701520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509701580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509701640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509701700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509701760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509701820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509701880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509701940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509702000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509702060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509702120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509702180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509702240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509702300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509702360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509702420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509702480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509702540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509702600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509702660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509702720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509702780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509702840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509702900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509702960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509703020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509703080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509703140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509703200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509703260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509703320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509703380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509703440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509703500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509703560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509703620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509703680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509703740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509703800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509703860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509703920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509703980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509704040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509704100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509704160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509704220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509704280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509704340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509704400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509704460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509704520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509704580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509704640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509704700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509704760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509704820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509704880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509704940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509705000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509705060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509705120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509705180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509705240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509705300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509705360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509705420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509705480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509705540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509705600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509705660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509705720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509705780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509705840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509705900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509705960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509706020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509706080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509706140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509706200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509706260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509706320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509706380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509706440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509706500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509706560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509706620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509706680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509706740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509706800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509706860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509706920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509706980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509707040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509707100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509707160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509707220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509707280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509707340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509707400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509707460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509707520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509707580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509707640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509707700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509707760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509707820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509707880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509707940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509708000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509708060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509708120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509708180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509708240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509708300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509708360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509708420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509708480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509708540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509708600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509708660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509708720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509708780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509708840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509708900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509708960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509709020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509709080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509709140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509709200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509709260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509709320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509709380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509709440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509709500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509709560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509709620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509709680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509709740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509709800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509709860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509709920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509709980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509710040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509710100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509710160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509710220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509710280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509710340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509710400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509710460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509710520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509710580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509710640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509710700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509710760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509710820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509710880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509710940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509711000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509711060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509711120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509711180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509711240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509711300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509711360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509711420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509711480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509711540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509711600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509711660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509711720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509711780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509711840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509711900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509711960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509712020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509712080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509712140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509712200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509712260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509712320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509712380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509712440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509712500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509712560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509712620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509712680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509712740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509712800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509712860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509712920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509712980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509713040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509713100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509713160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509713220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509713280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509713340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509713400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509713460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509713520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509713580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509713640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509713700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509713760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509713820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509713880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509713940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509714000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509714060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509714120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509714180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509714240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509714300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509714360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509714420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509714480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509714540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509714600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509714660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509714720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509714780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509714840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509714900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509714960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509715020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509715080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509715140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509715200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509715260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509715320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509715380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509715440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509715500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509715560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509715620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509715680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509715740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509715800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509715860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509715920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509715980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509716040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509716100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509716160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509716220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509716280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509716340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509716400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509716460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509716520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509716580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509716640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509716700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509716760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509716820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509716880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509716940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509717000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509717060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509717120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509717180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509717240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509717300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509717360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509717420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509717480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509717540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509717600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509717660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509717720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509717780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509717840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509717900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509717960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509718020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509718080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509718140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509718200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509718260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509718320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509718380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509718440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509718500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509718560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509718620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509718680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509718740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509718800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509718860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509718920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509718980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509719040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509719100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509719160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509719220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509719280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509719340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509719400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509719460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509719520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509719580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509719640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509719700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509719760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509719820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509719880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509719940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509720000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509720060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509720120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509720180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509720240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509720300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509720360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509720420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509720480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509720540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509720600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509720660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509720720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509720780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509720840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509720900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509720960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509721020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509721080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509721140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509721200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509721260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509721320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509721380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509721440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509721500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509721560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509721620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509721680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509721740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509721800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509721860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509721920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509721980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509722040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509722100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509722160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509722220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509722280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509722340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509722400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509722460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509722520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509722580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509722640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509722700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509722760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509722820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509722880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509722940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509723000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509723060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509723120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509723180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509723240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509723300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509723360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509723420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509723480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509723540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509723600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509723660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509723720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509723780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509723840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509723900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509723960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509724020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509724080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509724140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509724200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509724260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509724320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509724380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509724440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509724500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509724560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509724620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509724680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509724740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509724800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509724860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509724920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509724980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509725040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509725100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509725160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509725220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509725280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509725340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509725400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509725460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509725520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509725580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509725640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509725700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509725760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509725820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509725880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509725940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509726000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509726060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509726120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509726180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509726240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509726300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509726360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509726420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509726480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509726540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509726600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509726660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509726720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509726780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509726840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509726900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509726960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509727020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509727080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509727140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509727200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509727260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509727320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509727380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509727440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509727500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509727560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509727620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509727680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509727740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509727800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509727860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509727920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509727980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509728040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509728100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509728160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509728220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509728280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509728340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509728400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509728460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509728520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509728580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509728640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509728700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509728760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509728820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509728880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509728940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509729000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509729060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509729120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509729180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509729240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509729300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509729360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509729420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509729480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509729540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509729600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509729660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509729720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509729780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509729840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509729900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509729960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509730020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509730080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509730140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509730200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509730260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509730320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509730380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509730440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509730500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509730560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509730620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509730680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509730740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509730800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509730860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509730920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509730980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509731040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509731100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509731160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509731220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509731280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509731340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509731400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509731460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509731520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509731580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509731640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509731700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509731760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509731820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509731880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509731940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509732000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509732060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509732120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509732180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509732240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509732300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509732360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509732420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509732480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509732540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509732600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509732660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509732720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509732780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509732840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509732900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509732960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509733020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509733080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509733140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509733200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509733260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509733320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509733380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509733440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509733500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509733560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509733620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509733680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509733740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509733800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509733860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509733920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509733980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509734040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509734100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509734160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509734220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509734280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509734340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509734400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509734460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509734520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509734580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509734640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509734700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509734760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509734820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509734880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509734940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509735000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509735060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509735120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509735180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509735240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509735300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509735360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509735420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509735480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509735540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509735600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509735660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509735720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509735780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509735840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509735900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509735960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509736020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509736080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509736140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509736200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509736260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509736320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509736380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509736440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509736500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509736560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509736620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509736680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509736740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509736800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509736860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509736920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509736980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509737040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509737100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509737160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509737220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509737280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509737340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509737400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509737460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509737520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509737580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509737640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509737700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509737760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509737820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509737880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509737940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509738000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509738060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509738120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509738180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509738240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509738300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509738360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509738420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509738480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509738540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509738600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509738660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509738720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509738780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509738840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509738900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509738960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509739020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509739080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509739140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509739200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509739260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509739320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509739380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509739440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509739500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509739560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509739620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509739680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509739740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509739800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509739860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509739920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509739980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509740040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509740100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509740160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509740220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509740280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509740340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509740400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509740460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509740520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509740580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509740640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509740700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509740760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509740820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509740880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509740940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509741000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509741060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509741120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509741180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509741240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509741300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509741360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509741420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509741480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509741540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509741600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509741660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509741720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509741780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509741840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509741900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509741960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509742020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509742080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509742140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509742200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509742260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509742320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509742380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509742440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509742500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509742560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509742620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509742680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509742740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509742800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509742860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509742920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509742980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509743040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509743100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509743160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509743220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509743280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509743340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509743400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509743460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509743520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509743580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509743640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509743700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509743760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509743820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509743880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509743940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509744000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509744060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509744120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509744180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509744240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509744300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509744360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509744420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509744480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509744540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509744600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509744660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509744720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509744780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509744840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509744900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509744960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509745020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509745080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509745140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509745200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509745260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509745320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509745380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509745440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509745500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509745560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509745620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509745680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509745740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509745800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509745860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509745920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509745980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509746040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509746100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509746160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509746220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509746280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509746340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509746400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509746460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509746520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509746580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509746640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509746700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509746760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509746820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509746880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509746940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509747000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509747060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509747120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509747180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509747240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509747300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509747360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509747420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509747480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509747540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509747600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509747660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509747720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509747780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509747840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509747900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509747960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509748020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509748080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509748140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509748200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509748260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509748320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509748380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509748440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509748500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509748560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509748620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509748680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509748740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509748800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509748860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509748920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509748980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509749040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509749100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509749160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509749220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509749280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509749340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509749400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509749460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509749520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509749580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509749640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509749700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509749760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509749820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509749880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509749940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509750000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509750060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509750120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509750180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509750240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509750300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509750360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509750420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509750480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509750540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509750600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509750660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509750720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509750780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509750840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509750900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509750960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509751020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509751080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509751140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509751200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509751260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509751320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509751380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509751440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509751500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509751560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509751620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509751680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509751740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509751800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509751860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509751920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509751980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509752040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509752100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509752160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509752220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509752280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509752340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509752400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509752460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509752520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509752580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509752640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509752700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509752760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509752820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509752880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509752940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509753000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509753060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509753120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509753180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509753240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509753300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509753360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509753420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509753480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509753540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509753600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509753660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509753720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509753780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509753840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509753900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509753960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509754020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509754080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509754140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509754200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509754260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509754320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509754380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509754440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509754500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509754560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509754620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509754680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509754740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509754800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509754860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509754920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509754980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509755040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509755100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509755160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509755220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509755280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509755340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509755400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509755460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509755520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509755580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509755640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509755700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509755760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509755820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509755880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509755940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509756000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509756060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509756120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509756180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509756240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509756300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509756360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509756420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509756480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509756540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509756600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509756660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509756720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509756780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509756840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509756900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509756960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509757020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509757080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509757140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509757200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509757260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509757320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509757380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509757440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509757500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509757560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509757620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509757680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509757740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509757800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509757860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509757920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509757980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509758040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509758100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509758160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509758220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509758280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509758340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509758400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509758460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509758520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509758580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509758640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509758700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509758760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509758820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509758880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509758940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509759000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509759060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509759120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509759180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509759240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509759300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509759360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509759420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509759480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509759540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509759600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509759660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509759720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509759780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509759840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509759900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509759960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509760020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509760080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509760140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509760200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509760260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509760320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509760380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509760440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509760500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509760560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509760620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509760680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509760740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509760800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509760860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509760920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509760980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509761040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509761100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509761160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509761220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509761280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509761340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509761400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509761460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509761520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509761580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509761640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509761700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509761760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509761820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509761880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509761940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509762000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509762060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509762120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509762180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509762240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509762300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509762360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509762420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509762480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509762540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509762600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509762660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509762720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509762780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509762840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509762900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509762960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509763020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509763080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509763140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509763200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509763260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509763320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509763380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509763440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509763500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509763560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509763620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509763680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509763740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509763800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509763860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509763920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509763980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509764040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509764100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509764160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509764220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509764280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509764340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509764400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509764460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509764520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509764580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509764640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509764700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509764760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509764820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509764880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509764940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509765000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509765060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509765120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509765180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509765240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509765300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509765360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509765420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509765480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509765540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509765600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509765660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509765720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509765780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509765840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509765900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509765960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509766020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509766080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509766140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509766200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509766260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509766320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509766380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509766440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509766500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509766560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509766620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509766680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509766740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509766800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509766860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509766920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509766980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509767040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509767100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509767160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509767220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509767280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509767340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509767400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509767460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509767520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509767580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509767640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509767700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509767760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509767820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509767880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509767940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509768000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509768060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509768120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509768180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509768240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509768300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509768360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509768420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509768480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509768540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509768600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509768660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509768720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509768780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509768840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509768900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509768960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509769020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509769080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509769140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509769200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509769260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509769320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509769380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509769440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509769500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509769560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509769620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509769680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509769740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509769800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509769860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509769920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509769980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509770040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509770100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509770160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509770220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509770280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509770340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509770400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509770460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509770520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509770580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509770640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509770700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509770760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509770820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509770880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509770940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509771000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509771060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509771120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509771180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509771240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509771300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509771360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509771420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509771480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509771540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509771600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509771660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509771720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509771780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509771840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509771900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509771960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509772020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509772080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509772140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509772200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509772260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509772320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509772380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509772440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509772500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509772560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509772620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509772680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509772740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509772800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509772860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509772920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509772980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509773040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509773100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509773160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509773220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509773280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509773340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509773400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509773460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509773520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509773580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509773640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509773700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509773760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509773820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509773880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509773940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509774000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509774060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509774120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509774180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509774240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509774300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509774360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509774420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509774480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509774540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509774600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509774660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509774720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509774780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509774840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509774900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509774960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509775020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509775080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509775140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509775200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509775260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509775320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509775380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509775440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509775500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509775560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509775620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509775680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509775740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509775800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509775860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509775920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509775980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509776040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509776100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509776160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509776220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509776280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509776340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509776400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509776460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509776520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509776580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509776640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509776700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509776760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509776820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509776880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509776940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509777000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509777060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509777120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509777180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509777240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509777300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509777360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509777420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509777480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509777540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509777600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509777660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509777720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509777780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509777840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509777900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509777960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509778020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509778080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509778140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509778200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509778260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509778320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509778380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509778440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509778500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509778560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509778620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509778680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509778740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509778800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509778860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509778920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509778980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509779040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509779100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509779160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509779220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509779280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509779340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509779400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509779460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509779520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509779580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509779640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509779700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509779760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509779820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509779880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509779940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509780000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509780060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509780120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509780180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509780240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509780300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509780360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509780420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509780480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509780540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509780600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509780660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509780720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509780780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509780840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509780900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509780960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509781020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509781080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509781140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509781200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509781260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509781320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509781380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509781440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509781500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509781560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509781620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509781680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509781740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509781800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509781860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509781920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509781980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509782040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509782100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509782160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509782220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509782280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509782340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509782400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509782460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509782520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509782580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509782640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509782700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509782760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509782820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509782880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509782940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509783000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509783060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509783120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509783180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509783240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509783300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509783360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509783420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509783480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509783540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509783600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509783660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509783720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509783780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509783840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509783900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509783960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509784020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509784080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509784140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509784200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509784260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509784320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509784380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509784440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509784500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509784560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509784620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509784680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509784740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509784800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509784860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509784920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509784980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509785040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509785100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509785160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509785220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509785280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509785340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509785400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509785460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509785520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509785580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509785640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509785700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509785760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509785820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509785880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509785940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509786000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509786060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509786120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509786180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509786240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509786300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509786360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509786420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509786480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509786540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509786600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509786660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509786720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509786780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509786840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509786900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509786960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509787020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509787080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509787140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509787200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509787260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509787320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509787380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509787440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509787500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509787560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509787620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509787680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509787740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509787800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509787860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509787920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509787980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509788040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509788100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509788160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509788220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509788280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509788340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509788400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509788460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509788520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509788580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509788640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509788700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509788760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509788820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509788880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509788940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509789000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509789060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509789120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509789180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509789240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509789300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509789360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509789420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509789480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509789540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509789600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509789660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509789720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509789780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509789840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509789900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509789960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509790020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509790080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509790140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509790200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509790260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509790320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509790380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509790440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509790500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509790560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509790620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509790680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509790740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509790800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509790860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509790920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509790980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509791040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509791100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509791160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509791220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509791280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509791340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509791400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509791460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509791520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509791580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509791640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509791700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509791760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509791820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509791880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509791940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509792000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509792060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509792120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509792180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509792240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509792300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509792360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509792420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509792480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509792540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509792600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509792660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509792720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509792780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509792840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509792900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509792960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509793020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509793080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509793140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509793200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509793260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509793320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509793380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509793440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509793500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509793560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509793620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509793680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509793740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509793800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509793860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509793920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509793980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509794040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509794100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509794160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509794220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509794280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509794340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509794400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509794460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509794520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509794580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509794640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509794700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509794760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509794820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509794880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509794940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509795000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509795060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509795120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509795180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509795240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509795300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509795360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509795420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509795480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509795540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509795600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509795660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509795720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509795780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509795840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509795900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509795960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509796020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509796080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509796140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509796200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509796260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509796320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509796380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509796440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509796500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509796560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509796620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509796680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509796740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509796800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509796860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509796920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509796980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509797040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509797100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509797160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509797220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509797280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509797340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509797400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509797460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509797520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509797580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509797640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509797700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509797760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509797820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509797880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509797940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509798000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509798060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509798120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509798180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509798240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509798300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509798360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509798420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509798480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509798540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509798600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509798660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509798720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509798780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509798840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509798900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509798960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509799020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509799080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509799140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509799200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509799260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509799320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509799380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509799440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509799500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509799560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509799620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509799680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509799740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509799800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509799860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509799920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509799980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509800040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509800100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509800160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509800220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509800280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509800340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509800400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509800460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509800520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509800580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509800640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509800700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509800760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509800820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509800880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509800940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509801000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509801060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509801120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509801180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509801240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509801300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509801360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509801420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509801480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509801540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509801600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509801660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509801720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509801780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509801840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509801900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509801960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509802020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509802080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509802140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509802200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509802260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509802320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509802380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509802440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509802500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509802560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509802620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509802680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509802740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509802800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509802860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509802920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509802980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509803040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509803100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509803160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509803220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509803280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509803340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509803400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509803460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509803520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509803580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509803640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509803700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509803760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509803820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509803880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509803940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509804000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509804060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509804120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509804180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509804240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509804300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509804360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509804420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509804480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509804540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509804600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509804660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509804720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509804780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509804840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509804900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509804960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509805020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509805080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509805140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509805200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509805260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509805320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509805380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509805440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509805500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509805560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509805620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509805680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509805740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509805800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509805860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509805920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509805980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509806040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509806100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509806160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509806220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509806280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509806340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509806400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509806460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509806520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509806580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509806640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509806700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509806760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509806820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509806880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509806940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509807000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509807060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509807120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509807180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509807240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509807300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509807360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509807420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509807480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509807540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509807600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509807660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509807720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509807780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509807840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509807900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509807960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509808020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509808080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509808140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509808200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509808260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509808320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509808380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509808440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509808500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509808560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509808620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509808680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509808740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509808800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509808860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509808920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509808980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509809040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509809100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509809160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509809220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509809280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509809340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509809400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509809460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509809520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509809580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509809640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509809700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509809760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509809820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509809880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509809940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509810000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509810060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509810120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509810180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509810240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509810300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509810360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509810420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509810480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509810540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509810600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509810660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509810720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509810780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509810840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509810900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509810960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509811020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509811080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509811140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509811200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509811260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509811320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509811380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509811440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509811500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509811560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509811620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509811680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509811740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509811800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509811860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509811920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509811980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509812040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509812100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509812160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509812220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509812280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509812340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509812400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509812460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509812520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509812580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509812640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509812700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509812760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509812820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509812880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509812940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509813000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509813060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509813120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509813180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509813240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509813300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509813360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509813420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509813480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509813540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509813600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509813660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509813720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509813780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509813840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509813900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509813960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509814020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509814080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509814140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509814200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509814260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509814320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509814380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509814440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509814500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509814560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509814620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509814680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509814740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509814800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509814860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509814920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509814980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509815040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509815100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509815160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509815220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509815280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509815340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509815400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509815460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509815520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509815580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509815640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509815700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509815760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509815820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509815880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509815940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509816000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509816060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509816120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509816180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509816240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509816300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509816360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509816420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509816480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509816540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509816600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509816660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509816720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509816780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509816840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509816900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509816960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509817020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509817080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509817140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509817200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509817260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509817320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509817380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509817440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509817500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509817560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509817620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509817680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509817740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509817800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509817860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509817920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509817980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509818040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509818100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509818160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509818220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509818280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509818340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509818400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509818460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509818520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509818580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509818640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509818700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509818760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509818820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509818880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509818940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509819000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509819060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509819120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509819180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509819240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509819300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509819360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509819420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509819480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509819540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509819600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509819660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509819720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509819780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509819840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509819900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509819960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509820020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509820080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509820140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509820200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509820260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509820320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509820380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509820440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509820500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509820560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509820620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509820680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509820740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509820800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509820860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509820920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509820980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509821040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509821100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509821160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509821220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509821280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509821340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509821400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509821460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509821520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509821580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509821640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509821700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509821760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509821820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509821880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509821940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509822000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509822060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509822120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509822180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509822240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509822300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509822360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509822420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509822480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509822540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509822600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509822660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509822720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509822780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509822840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509822900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509822960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509823020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509823080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509823140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509823200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509823260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509823320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509823380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509823440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509823500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509823560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509823620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509823680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509823740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509823800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509823860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509823920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509823980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509824040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509824100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509824160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509824220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509824280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509824340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509824400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509824460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509824520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509824580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509824640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509824700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509824760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509824820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509824880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509824940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509825000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509825060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509825120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509825180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509825240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509825300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509825360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509825420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509825480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509825540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509825600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509825660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509825720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509825780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509825840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509825900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509825960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509826020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509826080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509826140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509826200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509826260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509826320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509826380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509826440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509826500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509826560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509826620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509826680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509826740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509826800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509826860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509826920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509826980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509827040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509827100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509827160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509827220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509827280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509827340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509827400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509827460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509827520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509827580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509827640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509827700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509827760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509827820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509827880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509827940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509828000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509828060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509828120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509828180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509828240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509828300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509828360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509828420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509828480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509828540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509828600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509828660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509828720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509828780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509828840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509828900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509828960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509829020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509829080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509829140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509829200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509829260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509829320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509829380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509829440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509829500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509829560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509829620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509829680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509829740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509829800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509829860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509829920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509829980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509830040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509830100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509830160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509830220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509830280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509830340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509830400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509830460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509830520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509830580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509830640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509830700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509830760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509830820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509830880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509830940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509831000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509831060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509831120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509831180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509831240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509831300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509831360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509831420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509831480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509831540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509831600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509831660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509831720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509831780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509831840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509831900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509831960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509832020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509832080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509832140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509832200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509832260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509832320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509832380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509832440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509832500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509832560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509832620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509832680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509832740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509832800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509832860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509832920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509832980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509833040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509833100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509833160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509833220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509833280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509833340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509833400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509833460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509833520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509833580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509833640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509833700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509833760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509833820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509833880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509833940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509834000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509834060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509834120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509834180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509834240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509834300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509834360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509834420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509834480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509834540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509834600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509834660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509834720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509834780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509834840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509834900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509834960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509835020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509835080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509835140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509835200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509835260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509835320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509835380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509835440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509835500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509835560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509835620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509835680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509835740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509835800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509835860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509835920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509835980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509836040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509836100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509836160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509836220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509836280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509836340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509836400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509836460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509836520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509836580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509836640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509836700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509836760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509836820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509836880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509836940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509837000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509837060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509837120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509837180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509837240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509837300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509837360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509837420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509837480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509837540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509837600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509837660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509837720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509837780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509837840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509837900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509837960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509838020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509838080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509838140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509838200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509838260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509838320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509838380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509838440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509838500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509838560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509838620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509838680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509838740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509838800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509838860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509838920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509838980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509839040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509839100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509839160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509839220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509839280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509839340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509839400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509839460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509839520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509839580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509839640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509839700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509839760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509839820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509839880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509839940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509840000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509840060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509840120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509840180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509840240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509840300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509840360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509840420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509840480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509840540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509840600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509840660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509840720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509840780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509840840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509840900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509840960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509841020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509841080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509841140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509841200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509841260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509841320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509841380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509841440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509841500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509841560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509841620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509841680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509841740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509841800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509841860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509841920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509841980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509842040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509842100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509842160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509842220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509842280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509842340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509842400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509842460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509842520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509842580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509842640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509842700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509842760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509842820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509842880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509842940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509843000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509843060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509843120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509843180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509843240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509843300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509843360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509843420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509843480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509843540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509843600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509843660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509843720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509843780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509843840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509843900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509843960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509844020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509844080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509844140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509844200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509844260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509844320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509844380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509844440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509844500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509844560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509844620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509844680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509844740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509844800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509844860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509844920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509844980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509845040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509845100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509845160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509845220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509845280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509845340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509845400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509845460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509845520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509845580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509845640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509845700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509845760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509845820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509845880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509845940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509846000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509846060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509846120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509846180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509846240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509846300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509846360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509846420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509846480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509846540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509846600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509846660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509846720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509846780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509846840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509846900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509846960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509847020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509847080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509847140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509847200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509847260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509847320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509847380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509847440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509847500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509847560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509847620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509847680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509847740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509847800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509847860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509847920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509847980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509848040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509848100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509848160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509848220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509848280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509848340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509848400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509848460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509848520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509848580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509848640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509848700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509848760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509848820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509848880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509848940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509849000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509849060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509849120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509849180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509849240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509849300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509849360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509849420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509849480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509849540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509849600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509849660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509849720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509849780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509849840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509849900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509849960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509850020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509850080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509850140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509850200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509850260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509850320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509850380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509850440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509850500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509850560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509850620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509850680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509850740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509850800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509850860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509850920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509850980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509851040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509851100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509851160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509851220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509851280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509851340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509851400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509851460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509851520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509851580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509851640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509851700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509851760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509851820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509851880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509851940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509852000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509852060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509852120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509852180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509852240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509852300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509852360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509852420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509852480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509852540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509852600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509852660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509852720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509852780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509852840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509852900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509852960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509853020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509853080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509853140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509853200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509853260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509853320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509853380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509853440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509853500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509853560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509853620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509853680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509853740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509853800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509853860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509853920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509853980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509854040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509854100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509854160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509854220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509854280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509854340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509854400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509854460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509854520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509854580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509854640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509854700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509854760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509854820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509854880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509854940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509855000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509855060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509855120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509855180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509855240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509855300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509855360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509855420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509855480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509855540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509855600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509855660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509855720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509855780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509855840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509855900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509855960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509856020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509856080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509856140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509856200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509856260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509856320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509856380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509856440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509856500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509856560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509856620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509856680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509856740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509856800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509856860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509856920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509856980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509857040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509857100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509857160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509857220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509857280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509857340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509857400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509857460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509857520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509857580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509857640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509857700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509857760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509857820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509857880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509857940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509858000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509858060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509858120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509858180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509858240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509858300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509858360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509858420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509858480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509858540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509858600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509858660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509858720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509858780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509858840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509858900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509858960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509859020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509859080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509859140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509859200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509859260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509859320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509859380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509859440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509859500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509859560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509859620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509859680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509859740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509859800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509859860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509859920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509859980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509860040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509860100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509860160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509860220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509860280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509860340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509860400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509860460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509860520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509860580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509860640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509860700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509860760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509860820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509860880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509860940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509861000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509861060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509861120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509861180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509861240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509861300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509861360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509861420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509861480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509861540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509861600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509861660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509861720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509861780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509861840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509861900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509861960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509862020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509862080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509862140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509862200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509862260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509862320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509862380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509862440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509862500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509862560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509862620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509862680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509862740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509862800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509862860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509862920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509862980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509863040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509863100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509863160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509863220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509863280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509863340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509863400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509863460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509863520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509863580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509863640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509863700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509863760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509863820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509863880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509863940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509864000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509864060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509864120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509864180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509864240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509864300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509864360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509864420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509864480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509864540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509864600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509864660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509864720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509864780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509864840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509864900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509864960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509865020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509865080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509865140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509865200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509865260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509865320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509865380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509865440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509865500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509865560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509865620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509865680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509865740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509865800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509865860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509865920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509865980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509866040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509866100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509866160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509866220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509866280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509866340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509866400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509866460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509866520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509866580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509866640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509866700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509866760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509866820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509866880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509866940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509867000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509867060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509867120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509867180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509867240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509867300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509867360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509867420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509867480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509867540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509867600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509867660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509867720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509867780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509867840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509867900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509867960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509868020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509868080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509868140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509868200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509868260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509868320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509868380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509868440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509868500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509868560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509868620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509868680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509868740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509868800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509868860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509868920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509868980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509869040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509869100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509869160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509869220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509869280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509869340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509869400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509869460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509869520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509869580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509869640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509869700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509869760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509869820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509869880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509869940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509870000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509870060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509870120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509870180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509870240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509870300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509870360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509870420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509870480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509870540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509870600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509870660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509870720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509870780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509870840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509870900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509870960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509871020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509871080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509871140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509871200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509871260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509871320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509871380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509871440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509871500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509871560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509871620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509871680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509871740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509871800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509871860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509871920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509871980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509872040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509872100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509872160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509872220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509872280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509872340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509872400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509872460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509872520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509872580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509872640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509872700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509872760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509872820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509872880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509872940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509873000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509873060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509873120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509873180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509873240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509873300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509873360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509873420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509873480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509873540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509873600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509873660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509873720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509873780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509873840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509873900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509873960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509874020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509874080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509874140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509874200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509874260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509874320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509874380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509874440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509874500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509874560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509874620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509874680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509874740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509874800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509874860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509874920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509874980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509875040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509875100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509875160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509875220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509875280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509875340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509875400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509875460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509875520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509875580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509875640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509875700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509875760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509875820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509875880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509875940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509876000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509876060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509876120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509876180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509876240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509876300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509876360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509876420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509876480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509876540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509876600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509876660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509876720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509876780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509876840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509876900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509876960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509877020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509877080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509877140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509877200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509877260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509877320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509877380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509877440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509877500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509877560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509877620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509877680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509877740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509877800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509877860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509877920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509877980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509878040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509878100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509878160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509878220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509878280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509878340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509878400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509878460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509878520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509878580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509878640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509878700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509878760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509878820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509878880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509878940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509879000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509879060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509879120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509879180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509879240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509879300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509879360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509879420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509879480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509879540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509879600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509879660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509879720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509879780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509879840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509879900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509879960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509880020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509880080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509880140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509880200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509880260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509880320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509880380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509880440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509880500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509880560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509880620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509880680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509880740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509880800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509880860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509880920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509880980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509881040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509881100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509881160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509881220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509881280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509881340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509881400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509881460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509881520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509881580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509881640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509881700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509881760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509881820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509881880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509881940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509882000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509882060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509882120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509882180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509882240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509882300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509882360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509882420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509882480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509882540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509882600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509882660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509882720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509882780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509882840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509882900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509882960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509883020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509883080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509883140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509883200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509883260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509883320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509883380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509883440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509883500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509883560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509883620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509883680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509883740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509883800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509883860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509883920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509883980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509884040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509884100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509884160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509884220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509884280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509884340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509884400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509884460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509884520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509884580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509884640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509884700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509884760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509884820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509884880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509884940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509885000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509885060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509885120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509885180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509885240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509885300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509885360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509885420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509885480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509885540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509885600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509885660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509885720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509885780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509885840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509885900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509885960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509886020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509886080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509886140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509886200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509886260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509886320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509886380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509886440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509886500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509886560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509886620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509886680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509886740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509886800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509886860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509886920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509886980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509887040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509887100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509887160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509887220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509887280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509887340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509887400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509887460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509887520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509887580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509887640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509887700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509887760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509887820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509887880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509887940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509888000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509888060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509888120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509888180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509888240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509888300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509888360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509888420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509888480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509888540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509888600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509888660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509888720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509888780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509888840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509888900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509888960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509889020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509889080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509889140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509889200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509889260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509889320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509889380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509889440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509889500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509889560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509889620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509889680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509889740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509889800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509889860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509889920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509889980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509890040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509890100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509890160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509890220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509890280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509890340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509890400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509890460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509890520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509890580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509890640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509890700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509890760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509890820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509890880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509890940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509891000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509891060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509891120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509891180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509891240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509891300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509891360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509891420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509891480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509891540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509891600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509891660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509891720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509891780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509891840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509891900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509891960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509892020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509892080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509892140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509892200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509892260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509892320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509892380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509892440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509892500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509892560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509892620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509892680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509892740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509892800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509892860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509892920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509892980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509893040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509893100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509893160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509893220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509893280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509893340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509893400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509893460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509893520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509893580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509893640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509893700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509893760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509893820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509893880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509893940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509894000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509894060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509894120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509894180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509894240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509894300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509894360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509894420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509894480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509894540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509894600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509894660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509894720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509894780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509894840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509894900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509894960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509895020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509895080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509895140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509895200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509895260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509895320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509895380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509895440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509895500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509895560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509895620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509895680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509895740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509895800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509895860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509895920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509895980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509896040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509896100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509896160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509896220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509896280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509896340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509896400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509896460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509896520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509896580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509896640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509896700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509896760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509896820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509896880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509896940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509897000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509897060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509897120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509897180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509897240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509897300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509897360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509897420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509897480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509897540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509897600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509897660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509897720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509897780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509897840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509897900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509897960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509898020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509898080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509898140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509898200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509898260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509898320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509898380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509898440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509898500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509898560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509898620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509898680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509898740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509898800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509898860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509898920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509898980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509899040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509899100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509899160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509899220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509899280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509899340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509899400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509899460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509899520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509899580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509899640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509899700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509899760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509899820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509899880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509899940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509900000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509900060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509900120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509900180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509900240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509900300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509900360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509900420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509900480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509900540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509900600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509900660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509900720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509900780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509900840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509900900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509900960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509901020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509901080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509901140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509901200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509901260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509901320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509901380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509901440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509901500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509901560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509901620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509901680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509901740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509901800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509901860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509901920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509901980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509902040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509902100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509902160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509902220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509902280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509902340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509902400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509902460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509902520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509902580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509902640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509902700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509902760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509902820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509902880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509902940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509903000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509903060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509903120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509903180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509903240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509903300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509903360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509903420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509903480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509903540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509903600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509903660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509903720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509903780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509903840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509903900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509903960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509904020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509904080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509904140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509904200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509904260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509904320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509904380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509904440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509904500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509904560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509904620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509904680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509904740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509904800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509904860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509904920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509904980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509905040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509905100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509905160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509905220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509905280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509905340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509905400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509905460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509905520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509905580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509905640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509905700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509905760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509905820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509905880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509905940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509906000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509906060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509906120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509906180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509906240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509906300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509906360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509906420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509906480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509906540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509906600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509906660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509906720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509906780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509906840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509906900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509906960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509907020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509907080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509907140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509907200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509907260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509907320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509907380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509907440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509907500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509907560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509907620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509907680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509907740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509907800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509907860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509907920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509907980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509908040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509908100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509908160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509908220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509908280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509908340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509908400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509908460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509908520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509908580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509908640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509908700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509908760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509908820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509908880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509908940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509909000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509909060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509909120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509909180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509909240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509909300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509909360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509909420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509909480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509909540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509909600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509909660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509909720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509909780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509909840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509909900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509909960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509910020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509910080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509910140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509910200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509910260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509910320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509910380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509910440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509910500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509910560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509910620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509910680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509910740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509910800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509910860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509910920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509910980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509911040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509911100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509911160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509911220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509911280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509911340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509911400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509911460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509911520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509911580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509911640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509911700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509911760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509911820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509911880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509911940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509912000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509912060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509912120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509912180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509912240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509912300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509912360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509912420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509912480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509912540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509912600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509912660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509912720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509912780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509912840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509912900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509912960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509913020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509913080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509913140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509913200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509913260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509913320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509913380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509913440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509913500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509913560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509913620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509913680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509913740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509913800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509913860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509913920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509913980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509914040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509914100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509914160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509914220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509914280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509914340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509914400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509914460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509914520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509914580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509914640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509914700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509914760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509914820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509914880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509914940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509915000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509915060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509915120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509915180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509915240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509915300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509915360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509915420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509915480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509915540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509915600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509915660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509915720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509915780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509915840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509915900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509915960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509916020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509916080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509916140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509916200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509916260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509916320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509916380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509916440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509916500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509916560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509916620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509916680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509916740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509916800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509916860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509916920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509916980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509917040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509917100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509917160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509917220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509917280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509917340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509917400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509917460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509917520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509917580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509917640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509917700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509917760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509917820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509917880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509917940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509918000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509918060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509918120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509918180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509918240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509918300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509918360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509918420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509918480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509918540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509918600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509918660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509918720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509918780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509918840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509918900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509918960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509919020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509919080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509919140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509919200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509919260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509919320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509919380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509919440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509919500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509919560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509919620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509919680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509919740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509919800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509919860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509919920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509919980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509920040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509920100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509920160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509920220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509920280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509920340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509920400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509920460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509920520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509920580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509920640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509920700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509920760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509920820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509920880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509920940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509921000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509921060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509921120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509921180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509921240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509921300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509921360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509921420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509921480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509921540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509921600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509921660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509921720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509921780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509921840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509921900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509921960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509922020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509922080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509922140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509922200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509922260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509922320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509922380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509922440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509922500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509922560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509922620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509922680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509922740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509922800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509922860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509922920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509922980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509923040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509923100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509923160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509923220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509923280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509923340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509923400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509923460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509923520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509923580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509923640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509923700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509923760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509923820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509923880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509923940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509924000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509924060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509924120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509924180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509924240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509924300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509924360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509924420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509924480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509924540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509924600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509924660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509924720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509924780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509924840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509924900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509924960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509925020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509925080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509925140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509925200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509925260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509925320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509925380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509925440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509925500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509925560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509925620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509925680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509925740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509925800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509925860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509925920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509925980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509926040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509926100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509926160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509926220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509926280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509926340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509926400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509926460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509926520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509926580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509926640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509926700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509926760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509926820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509926880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509926940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509927000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509927060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509927120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509927180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509927240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509927300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509927360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509927420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509927480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509927540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509927600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509927660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509927720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509927780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509927840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509927900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509927960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509928020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509928080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509928140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509928200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509928260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509928320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509928380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509928440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509928500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509928560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509928620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509928680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509928740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509928800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509928860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509928920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509928980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509929040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509929100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509929160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509929220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509929280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509929340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509929400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509929460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509929520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509929580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509929640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509929700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509929760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509929820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509929880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509929940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509930000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509930060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509930120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509930180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509930240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509930300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509930360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509930420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509930480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509930540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509930600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509930660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509930720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509930780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509930840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509930900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509930960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509931020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509931080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509931140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509931200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509931260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509931320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509931380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509931440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509931500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509931560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509931620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509931680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509931740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509931800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509931860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509931920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509931980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509932040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509932100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509932160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509932220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509932280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509932340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509932400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509932460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509932520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509932580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509932640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509932700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509932760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509932820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509932880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509932940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509933000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509933060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509933120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509933180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509933240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509933300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509933360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509933420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509933480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509933540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509933600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509933660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509933720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509933780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509933840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509933900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509933960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509934020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509934080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509934140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509934200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509934260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509934320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509934380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509934440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509934500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509934560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509934620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509934680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509934740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509934800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509934860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509934920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509934980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509935040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509935100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509935160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509935220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509935280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509935340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509935400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509935460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509935520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509935580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509935640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509935700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509935760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509935820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509935880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509935940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509936000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509936060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509936120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509936180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509936240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509936300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509936360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509936420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509936480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509936540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509936600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509936660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509936720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509936780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509936840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509936900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509936960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509937020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509937080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509937140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509937200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509937260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509937320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509937380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509937440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509937500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509937560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509937620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509937680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509937740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509937800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509937860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509937920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509937980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509938040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509938100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509938160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509938220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509938280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509938340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509938400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509938460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509938520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509938580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509938640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509938700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509938760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509938820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509938880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509938940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509939000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509939060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509939120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509939180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509939240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509939300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509939360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509939420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509939480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509939540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509939600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509939660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509939720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509939780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509939840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509939900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509939960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509940020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509940080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509940140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509940200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509940260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509940320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509940380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509940440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509940500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509940560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509940620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509940680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509940740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509940800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509940860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509940920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509940980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509941040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509941100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509941160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509941220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509941280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509941340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509941400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509941460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509941520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509941580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509941640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509941700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509941760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509941820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509941880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509941940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509942000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509942060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509942120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509942180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509942240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509942300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509942360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509942420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509942480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509942540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509942600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509942660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509942720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509942780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509942840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509942900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509942960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509943020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509943080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509943140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509943200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509943260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509943320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509943380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509943440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509943500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509943560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509943620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509943680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509943740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509943800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509943860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509943920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509943980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509944040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509944100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509944160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509944220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509944280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509944340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509944400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509944460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509944520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509944580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509944640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509944700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509944760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509944820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509944880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509944940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509945000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509945060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509945120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509945180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509945240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509945300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509945360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509945420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509945480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509945540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509945600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509945660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509945720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509945780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509945840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509945900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509945960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509946020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509946080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509946140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509946200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509946260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509946320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509946380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509946440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509946500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509946560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509946620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509946680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509946740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509946800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509946860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509946920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509946980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509947040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509947100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509947160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509947220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509947280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509947340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509947400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509947460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509947520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509947580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509947640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509947700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509947760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509947820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509947880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509947940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509948000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509948060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509948120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509948180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509948240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509948300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509948360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509948420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509948480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509948540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509948600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509948660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509948720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509948780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509948840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509948900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509948960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509949020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509949080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509949140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509949200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509949260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509949320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509949380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509949440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509949500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509949560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509949620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509949680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509949740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509949800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509949860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509949920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509949980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509950040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509950100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509950160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509950220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509950280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509950340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509950400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509950460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509950520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509950580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509950640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509950700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509950760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509950820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509950880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509950940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509951000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509951060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509951120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509951180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509951240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509951300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509951360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509951420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509951480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509951540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509951600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509951660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509951720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509951780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509951840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509951900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509951960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509952020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509952080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509952140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509952200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509952260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509952320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509952380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509952440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509952500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509952560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509952620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509952680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509952740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509952800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509952860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509952920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509952980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509953040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509953100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509953160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509953220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509953280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509953340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509953400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509953460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509953520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509953580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509953640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509953700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509953760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509953820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509953880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509953940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509954000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509954060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509954120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509954180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509954240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509954300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509954360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509954420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509954480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509954540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509954600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509954660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509954720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509954780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509954840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509954900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509954960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509955020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509955080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509955140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509955200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509955260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509955320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509955380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509955440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509955500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509955560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509955620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509955680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509955740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509955800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509955860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509955920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509955980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509956040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509956100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509956160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509956220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509956280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509956340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509956400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509956460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509956520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509956580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509956640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509956700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509956760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509956820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509956880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509956940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509957000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509957060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509957120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509957180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509957240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509957300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509957360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509957420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509957480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509957540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509957600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509957660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509957720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509957780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509957840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509957900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509957960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509958020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509958080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509958140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509958200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509958260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509958320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509958380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509958440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509958500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509958560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509958620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509958680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509958740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509958800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509958860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509958920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509958980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509959040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509959100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509959160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509959220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509959280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509959340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509959400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509959460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509959520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509959580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509959640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509959700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509959760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509959820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509959880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509959940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509960000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509960060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509960120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509960180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509960240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509960300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509960360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509960420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509960480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509960540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509960600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509960660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509960720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509960780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509960840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509960900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509960960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509961020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509961080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509961140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509961200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509961260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509961320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509961380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509961440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509961500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509961560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509961620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509961680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509961740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509961800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509961860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509961920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509961980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509962040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509962100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509962160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509962220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509962280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509962340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509962400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509962460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509962520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509962580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509962640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509962700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509962760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509962820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509962880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509962940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509963000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509963060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509963120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509963180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509963240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509963300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509963360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509963420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509963480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509963540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509963600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509963660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509963720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509963780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509963840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509963900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509963960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509964020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509964080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509964140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509964200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509964260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509964320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509964380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509964440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509964500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509964560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509964620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509964680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509964740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509964800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509964860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509964920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509964980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509965040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509965100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509965160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509965220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509965280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509965340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509965400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509965460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509965520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509965580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509965640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509965700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509965760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509965820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509965880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509965940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509966000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509966060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509966120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509966180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509966240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509966300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509966360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509966420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509966480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509966540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509966600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509966660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509966720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509966780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509966840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509966900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509966960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509967020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509967080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509967140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509967200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509967260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509967320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509967380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509967440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509967500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509967560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509967620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509967680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509967740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509967800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509967860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509967920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509967980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509968040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509968100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509968160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509968220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509968280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509968340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509968400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509968460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509968520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509968580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509968640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509968700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509968760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509968820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509968880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509968940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509969000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509969060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509969120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509969180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509969240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509969300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509969360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509969420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509969480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509969540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509969600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509969660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509969720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509969780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509969840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509969900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509969960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509970020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509970080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509970140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509970200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509970260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509970320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509970380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509970440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509970500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509970560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509970620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509970680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509970740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509970800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509970860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509970920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509970980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509971040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509971100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509971160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509971220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509971280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509971340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509971400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509971460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509971520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509971580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509971640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509971700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509971760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509971820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509971880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509971940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509972000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509972060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509972120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509972180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509972240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509972300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509972360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509972420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509972480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509972540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509972600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509972660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509972720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509972780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509972840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509972900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509972960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509973020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509973080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509973140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509973200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509973260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509973320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509973380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509973440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509973500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509973560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509973620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509973680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509973740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509973800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509973860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509973920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509973980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509974040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509974100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509974160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509974220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509974280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509974340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509974400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509974460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509974520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509974580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509974640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509974700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509974760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509974820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509974880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509974940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509975000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509975060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509975120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509975180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509975240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509975300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509975360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509975420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509975480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509975540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509975600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509975660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509975720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509975780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509975840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509975900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509975960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509976020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509976080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509976140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509976200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509976260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509976320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509976380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509976440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509976500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509976560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509976620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509976680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509976740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509976800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509976860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509976920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509976980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509977040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509977100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509977160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509977220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509977280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509977340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509977400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509977460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509977520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509977580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509977640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509977700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509977760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509977820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509977880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509977940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509978000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509978060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509978120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509978180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509978240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509978300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509978360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509978420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509978480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509978540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509978600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509978660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509978720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509978780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509978840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509978900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509978960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509979020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509979080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509979140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509979200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509979260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509979320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509979380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509979440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509979500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509979560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509979620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509979680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509979740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509979800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509979860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509979920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509979980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509980040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509980100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509980160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509980220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509980280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509980340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509980400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509980460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509980520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509980580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509980640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509980700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509980760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509980820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509980880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509980940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509981000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509981060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509981120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509981180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509981240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509981300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509981360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509981420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509981480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509981540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509981600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509981660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509981720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509981780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509981840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509981900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509981960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509982020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509982080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509982140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509982200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509982260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509982320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509982380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509982440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509982500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509982560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509982620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509982680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509982740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509982800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509982860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509982920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509982980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509983040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509983100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509983160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509983220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509983280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509983340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509983400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509983460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509983520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509983580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509983640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509983700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509983760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509983820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509983880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509983940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509984000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509984060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509984120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509984180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509984240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509984300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509984360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509984420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509984480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509984540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509984600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509984660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509984720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509984780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509984840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509984900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509984960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509985020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509985080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509985140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509985200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509985260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509985320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509985380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509985440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509985500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509985560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509985620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509985680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509985740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509985800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509985860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509985920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509985980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509986040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509986100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509986160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509986220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509986280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509986340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509986400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509986460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509986520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509986580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509986640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509986700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509986760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509986820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509986880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509986940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509987000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509987060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509987120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509987180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509987240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509987300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509987360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509987420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509987480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509987540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509987600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509987660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509987720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509987780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509987840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509987900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509987960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509988020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509988080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509988140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509988200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509988260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509988320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509988380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509988440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509988500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509988560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509988620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509988680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509988740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509988800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509988860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509988920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509988980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509989040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509989100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509989160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509989220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509989280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509989340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509989400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509989460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509989520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509989580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509989640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509989700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509989760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509989820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509989880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509989940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509990000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509990060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509990120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509990180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509990240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509990300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509990360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509990420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509990480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509990540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509990600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509990660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509990720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509990780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509990840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509990900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509990960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509991020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509991080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509991140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509991200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509991260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509991320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509991380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509991440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509991500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509991560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509991620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509991680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509991740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509991800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509991860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509991920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509991980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509992040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509992100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509992160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509992220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509992280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509992340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509992400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509992460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509992520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509992580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509992640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509992700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509992760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509992820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509992880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509992940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509993000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509993060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509993120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509993180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509993240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509993300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509993360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509993420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509993480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509993540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509993600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509993660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509993720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509993780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509993840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509993900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509993960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509994020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509994080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509994140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509994200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509994260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509994320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509994380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509994440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509994500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509994560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509994620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509994680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509994740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509994800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509994860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509994920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509994980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509995040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509995100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509995160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509995220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509995280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509995340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509995400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509995460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509995520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509995580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509995640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509995700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509995760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509995820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509995880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509995940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509996000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509996060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509996120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509996180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509996240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509996300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509996360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509996420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509996480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509996540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509996600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509996660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509996720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509996780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509996840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509996900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509996960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509997020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509997080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509997140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509997200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509997260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509997320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509997380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509997440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509997500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509997560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509997620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509997680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509997740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509997800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509997860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509997920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509997980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509998040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509998100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509998160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509998220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509998280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509998340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509998400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509998460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509998520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509998580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509998640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509998700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509998760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509998820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509998880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509998940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509999000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509999060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509999120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509999180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509999240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509999300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509999360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509999420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509999480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509999540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509999600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509999660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509999720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509999780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509999840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509999900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1509999960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510000020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510000080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510000140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510000200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510000260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510000320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510000380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510000440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510000500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510000560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510000620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510000680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510000740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510000800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510000860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510000920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510000980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510001040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510001100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510001160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510001220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510001280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510001340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510001400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510001460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510001520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510001580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510001640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510001700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510001760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510001820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510001880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510001940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510002000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510002060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510002120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510002180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510002240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510002300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510002360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510002420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510002480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510002540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510002600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510002660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510002720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510002780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510002840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510002900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510002960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510003020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510003080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510003140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510003200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510003260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510003320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510003380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510003440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510003500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510003560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510003620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510003680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510003740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510003800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510003860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510003920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510003980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510004040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510004100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510004160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510004220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510004280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510004340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510004400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510004460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510004520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510004580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510004640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510004700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510004760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510004820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510004880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510004940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510005000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510005060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510005120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510005180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510005240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510005300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510005360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510005420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510005480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510005540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510005600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510005660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510005720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510005780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510005840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510005900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510005960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510006020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510006080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510006140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510006200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510006260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510006320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510006380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510006440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510006500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510006560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510006620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510006680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510006740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510006800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510006860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510006920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510006980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510007040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510007100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510007160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510007220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510007280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510007340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510007400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510007460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510007520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510007580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510007640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510007700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510007760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510007820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510007880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510007940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510008000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510008060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510008120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510008180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510008240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510008300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510008360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510008420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510008480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510008540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510008600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510008660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510008720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510008780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510008840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510008900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510008960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510009020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510009080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510009140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510009200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510009260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510009320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510009380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510009440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510009500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510009560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510009620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510009680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510009740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510009800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510009860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510009920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510009980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510010040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510010100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510010160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510010220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510010280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510010340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510010400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510010460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510010520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510010580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510010640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510010700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510010760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510010820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510010880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510010940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510011000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510011060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510011120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510011180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510011240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510011300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510011360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510011420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510011480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510011540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510011600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510011660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510011720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510011780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510011840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510011900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510011960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510012020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510012080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510012140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510012200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510012260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510012320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510012380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510012440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510012500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510012560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510012620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510012680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510012740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510012800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510012860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510012920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510012980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510013040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510013100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510013160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510013220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510013280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510013340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510013400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510013460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510013520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510013580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510013640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510013700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510013760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510013820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510013880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510013940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510014000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510014060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510014120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510014180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510014240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510014300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510014360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510014420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510014480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510014540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510014600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510014660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510014720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510014780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510014840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510014900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510014960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510015020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510015080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510015140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510015200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510015260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510015320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510015380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510015440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510015500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510015560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510015620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510015680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510015740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510015800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510015860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510015920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510015980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510016040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510016100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510016160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510016220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510016280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510016340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510016400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510016460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510016520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510016580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510016640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510016700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510016760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510016820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510016880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510016940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510017000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510017060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510017120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510017180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510017240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510017300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510017360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510017420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510017480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510017540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510017600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510017660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510017720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510017780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510017840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510017900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510017960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510018020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510018080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510018140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510018200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510018260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510018320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510018380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510018440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510018500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510018560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510018620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510018680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510018740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510018800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510018860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510018920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510018980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510019040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510019100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510019160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510019220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510019280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510019340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510019400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510019460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510019520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510019580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510019640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510019700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510019760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510019820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510019880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510019940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510020000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510020060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510020120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510020180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510020240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510020300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510020360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510020420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510020480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510020540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510020600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510020660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510020720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510020780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510020840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510020900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510020960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510021020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510021080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510021140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510021200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510021260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510021320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510021380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510021440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510021500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510021560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510021620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510021680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510021740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510021800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510021860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510021920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510021980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510022040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510022100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510022160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510022220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510022280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510022340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510022400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510022460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510022520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510022580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510022640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510022700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510022760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510022820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510022880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510022940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510023000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510023060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510023120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510023180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510023240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510023300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510023360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510023420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510023480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510023540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510023600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510023660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510023720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510023780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510023840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510023900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510023960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510024020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510024080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510024140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510024200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510024260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510024320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510024380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510024440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510024500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510024560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510024620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510024680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510024740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510024800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510024860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510024920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510024980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510025040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510025100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510025160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510025220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510025280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510025340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510025400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510025460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510025520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510025580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510025640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510025700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510025760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510025820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510025880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510025940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510026000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510026060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510026120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510026180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510026240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510026300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510026360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510026420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510026480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510026540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510026600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510026660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510026720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510026780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510026840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510026900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510026960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510027020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510027080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510027140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510027200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510027260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510027320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510027380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510027440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510027500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510027560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510027620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510027680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510027740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510027800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510027860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510027920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510027980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510028040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510028100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510028160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510028220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510028280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510028340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510028400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510028460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510028520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510028580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510028640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510028700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510028760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510028820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510028880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510028940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510029000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510029060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510029120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510029180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510029240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510029300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510029360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510029420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510029480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510029540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510029600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510029660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510029720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510029780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510029840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510029900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510029960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510030020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510030080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510030140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510030200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510030260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510030320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510030380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510030440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510030500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510030560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510030620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510030680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510030740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510030800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510030860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510030920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510030980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510031040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510031100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510031160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510031220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510031280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510031340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510031400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510031460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510031520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510031580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510031640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510031700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510031760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510031820000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510031880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510031940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510032000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510032060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510032120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510032180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510032240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510032300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510032360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510032420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510032480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510032540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510032600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510032660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510032720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510032780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510032840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510032900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510032960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510033020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510033080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510033140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510033200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510033260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510033320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510033380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510033440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510033500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510033560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510033620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510033680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510033740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510033800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510033860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510033920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510033980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510034040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510034100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510034160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510034220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510034280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510034340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510034400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510034460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510034520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510034580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510034640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510034700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510034760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510034820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510034880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510034940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510035000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510035060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510035120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510035180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510035240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510035300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510035360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510035420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510035480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510035540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510035600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510035660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510035720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510035780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510035840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510035900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510035960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510036020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510036080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510036140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510036200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510036260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510036320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510036380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510036440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510036500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510036560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510036620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510036680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510036740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510036800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510036860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510036920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510036980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510037040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510037100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510037160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510037220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510037280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510037340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510037400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510037460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510037520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510037580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510037640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510037700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510037760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510037820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510037880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510037940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510038000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510038060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510038120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510038180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510038240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510038300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510038360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510038420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510038480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510038540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510038600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510038660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510038720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510038780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510038840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510038900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510038960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510039020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510039080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510039140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510039200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510039260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510039320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510039380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510039440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510039500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510039560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510039620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510039680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510039740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510039800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510039860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510039920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510039980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510040040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510040100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510040160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510040220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510040280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510040340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510040400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510040460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510040520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510040580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510040640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510040700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510040760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510040820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510040880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510040940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510041000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510041060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510041120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510041180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510041240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510041300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510041360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510041420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510041480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510041540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510041600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510041660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510041720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510041780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510041840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510041900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510041960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510042020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510042080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510042140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510042200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510042260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510042320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510042380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510042440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510042500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510042560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510042620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510042680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510042740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510042800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510042860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510042920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510042980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510043040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510043100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510043160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510043220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510043280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510043340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510043400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510043460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510043520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510043580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510043640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510043700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510043760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510043820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510043880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510043940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510044000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510044060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510044120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510044180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510044240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510044300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510044360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510044420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510044480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510044540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510044600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510044660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510044720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510044780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510044840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510044900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510044960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510045020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510045080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510045140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510045200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510045260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510045320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510045380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510045440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510045500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510045560000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510045620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510045680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510045740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510045800000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510045860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510045920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510045980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510046040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510046100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510046160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510046220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510046280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510046340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510046400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510046460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510046520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510046580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510046640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510046700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510046760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510046820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510046880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510046940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510047000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510047060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510047120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510047180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510047240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510047300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510047360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510047420000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510047480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510047540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510047600000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510047660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510047720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510047780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510047840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510047900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510047960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510048020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510048080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510048140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510048200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510048260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510048320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510048380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510048440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510048500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510048560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510048620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510048680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510048740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510048800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510048860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510048920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510048980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510049040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510049100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510049160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510049220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510049280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510049340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510049400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510049460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510049520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510049580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510049640000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510049700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510049760000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510049820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510049880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510049940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510050000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510050060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510050120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510050180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510050240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510050300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510050360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510050420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510050480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510050540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510050600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510050660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510050720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510050780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510050840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510050900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510050960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510051020000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510051080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510051140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510051200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510051260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510051320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510051380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510051440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510051500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510051560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510051620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510051680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510051740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510051800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510051860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510051920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510051980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510052040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510052100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510052160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510052220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510052280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510052340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510052400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510052460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510052520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510052580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510052640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510052700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510052760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510052820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510052880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510052940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510053000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510053060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510053120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510053180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510053240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510053300000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510053360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510053420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510053480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510053540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510053600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510053660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510053720000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510053780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510053840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510053900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510053960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510054020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510054080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510054140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510054200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510054260000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510054320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510054380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510054440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510054500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510054560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510054620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510054680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510054740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510054800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510054860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510054920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510054980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510055040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510055100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510055160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510055220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510055280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510055340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510055400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510055460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510055520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510055580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510055640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510055700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510055760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510055820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510055880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510055940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510056000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510056060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510056120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510056180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510056240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510056300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510056360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510056420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510056480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510056540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510056600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510056660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510056720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510056780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510056840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510056900000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510056960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510057020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510057080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510057140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510057200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510057260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510057320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510057380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510057440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510057500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510057560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510057620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510057680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510057740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510057800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510057860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510057920000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510057980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510058040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510058100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510058160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510058220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510058280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510058340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510058400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510058460000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510058520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510058580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510058640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510058700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510058760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510058820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510058880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510058940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510059000000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510059060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510059120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510059180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510059240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510059300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510059360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510059420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510059480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510059540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510059600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510059660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510059720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510059780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510059840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510059900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510059960000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510060020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510060080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510060140000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510060200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510060260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510060320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510060380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510060440000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510060500000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510060560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510060620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510060680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510060740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510060800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510060860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510060920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510060980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510061040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510061100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510061160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510061220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510061280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510061340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510061400000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510061460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510061520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510061580000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510061640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510061700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510061760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510061820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510061880000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510061940000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510062000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510062060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510062120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510062180000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510062240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510062300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510062360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510062420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510062480000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510062540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510062600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510062660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510062720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510062780000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510062840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510062900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510062960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510063020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510063080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510063140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510063200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510063260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510063320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510063380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510063440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510063500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510063560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510063620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510063680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510063740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510063800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510063860000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510063920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510063980000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510064040000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510064100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510064160000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510064220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510064280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510064340000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510064400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510064460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510064520000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510064580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510064640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510064700000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510064760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510064820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510064880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510064940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510065000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510065060000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510065120000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510065180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510065240000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510065300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510065360000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510065420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510065480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510065540000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510065600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510065660000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510065720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510065780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510065840000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510065900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510065960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510066020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510066080000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510066140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510066200000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510066260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510066320000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510066380000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510066440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510066500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510066560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510066620000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510066680000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510066740000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510066800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510066860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510066920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510066980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510067040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510067100000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510067160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510067220000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510067280000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510067340000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510067400000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510067460000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510067520000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510067580000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510067640000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510067700000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510067760000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510067820000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510067880000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510067940000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510068000000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510068060000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510068120000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510068180000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510068240000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510068300000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510068360000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510068420000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510068480000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510068540000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510068600000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510068660000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510068720000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510068780000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510068840000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510068900000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510068960000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510069020000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510069080000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510069140000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510069200000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510069260000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510069320000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510069380000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510069440000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510069500000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510069560000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510069620000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510069680000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510069740000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510069800000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510069860000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510069920000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510069980000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510070040000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510070100000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510070160000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510070220000,true) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510070280000,false) +insert into root.sgcc.wf03.wt01(timestamp,status) values(1510070340000,false) +create timeseries root.sgcc.wf03.wt01.temperature with datatype=FLOAT,encoding=RLE +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509465600000,25.957603) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509465660000,24.359503) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509465720000,20.092794) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509465780000,20.182663) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509465840000,21.125198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509465900000,22.720892) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509465960000,20.71) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509466020000,21.451046) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509466080000,22.57987) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509466140000,20.98177) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509466200000,25.521263) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509466260000,22.905718) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509466320000,21.646704) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509466380000,20.048601) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509466440000,23.983444) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509466500000,24.07331) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509466560000,22.06242) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509466620000,20.061153) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509466680000,24.600649) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509466740000,23.140144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509466800000,21.67964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509466860000,25.678375) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509466920000,23.667482) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509466980000,22.206978) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509467040000,20.14182) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509467100000,25.551165) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509467160000,25.641031) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509467220000,23.025486) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509467280000,21.564981) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509467340000,25.96688) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509467400000,21.90166) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509467460000,22.642708) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509467520000,20.631815) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509467580000,22.22751) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509467640000,23.170044) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509467700000,21.70954) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509467760000,23.442833) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509467820000,21.84473) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509467880000,23.58576) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509467940000,25.520542) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509468000000,24.060038) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509468060000,24.663486) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509468120000,20.396778) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509468180000,23.781418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509468240000,24.522465) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509468300000,20.118158) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509468360000,24.657654) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509468420000,23.39864) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509468480000,20.783094) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509468540000,25.184992) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509468600000,25.27486) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509468660000,23.209702) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509468720000,21.950687) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509468780000,20.352585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509468840000,23.73704) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509468900000,22.276535) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509468960000,21.017519) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509469020000,25.419418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509469080000,23.35426) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509469140000,21.343369) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509469200000,20.890308) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509469260000,24.687555) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509469320000,24.777422) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509469380000,23.316917) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509469440000,20.701372) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509469500000,25.30476) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509469560000,23.844255) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509469620000,25.577547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509469680000,20.318594) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509469740000,24.92198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509469800000,20.104885) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509469860000,20.84593) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509469920000,25.385426) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509469980000,21.18261) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509470040000,21.272478) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509470100000,21.463137) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509470160000,23.196428) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509470220000,21.598326) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509470280000,21.734905) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509470340000,23.468197) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509470400000,21.457304) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509470460000,22.060753) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509470520000,23.995533) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509470580000,22.53503) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509470640000,21.074524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509470700000,24.87177) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509470760000,24.411251) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509470820000,23.152235) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509470880000,21.087078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509470940000,25.488976) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509471000000,24.028471) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509471060000,21.614414) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509471120000,20.15391) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509471180000,24.555809) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509471240000,23.095303) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509471300000,22.037592) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509471360000,20.0267) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509471420000,25.97897) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509471480000,23.913813) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509471540000,22.453308) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509471600000,21.194292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509471660000,22.789988) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509471720000,22.980646) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509471780000,21.520142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509471840000,23.454922) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509471900000,24.05837) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509471960000,22.597866) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509472020000,23.78077) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509472080000,24.723305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509472140000,24.675575) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509472200000,20.408869) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509472260000,24.948364) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509472320000,25.139023) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509472380000,20.130249) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509472440000,24.669744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509472500000,25.41079) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509472560000,21.144083) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509472620000,25.74747) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509472680000,25.938128) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509472740000,21.67142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509472800000,20.210915) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509472860000,20.163185) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509472920000,24.299519) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509472980000,22.288624) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509473040000,20.828121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509473100000,24.625366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509473160000,23.36635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509473220000,21.905846) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509473280000,25.2903) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509473340000,23.6922) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509473400000,23.23914) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509473460000,21.778635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509473520000,25.713478) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509473580000,25.665749) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509473640000,23.654856) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509473700000,21.791187) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509473760000,20.330683) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509473820000,24.732582) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509473880000,20.465874) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509473940000,20.85802) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509474000000,25.397516) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509474060000,20.993212) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509474120000,21.734257) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509474180000,20.47524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509474240000,21.658146) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509474300000,23.811966) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509474360000,22.351463) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509474420000,24.084755) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509474480000,22.019781) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509474540000,22.62323) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509474600000,23.806135) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509474660000,22.34563) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509474720000,23.288166) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509474780000,24.88386) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509474840000,23.423355) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509474900000,23.614014) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509474960000,25.548794) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509475020000,25.501064) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509475080000,24.040562) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509475140000,21.975403) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509475200000,25.964512) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509475260000,24.567898) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509475320000,22.50274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509475380000,21.042236) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509475440000,25.581732) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509475500000,24.991076) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509475560000,22.37553) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509475620000,20.915026) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509475680000,21.004892) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509475740000,24.80214) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509475800000,23.543123) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509475860000,21.53223) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509475920000,25.467073) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509475980000,23.868973) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509476040000,22.609957) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509476100000,24.343248) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509476160000,24.533907) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509476220000,22.935804) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509476280000,24.870586) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509476340000,25.611631) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509476400000,25.7015) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509476460000,21.297194) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509476520000,21.487852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509476580000,25.42288) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509476640000,21.156172) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509476700000,25.558071) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509476760000,20.299116) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509476820000,21.68351) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509476880000,20.223005) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509476940000,20.826454) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509477000000,22.559746) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509477060000,21.30073) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509477120000,23.041761) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509477180000,24.637455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509477240000,23.17695) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509477300000,21.716446) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509477360000,25.85278) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509477420000,24.254677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509477480000,22.243784) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509477540000,20.178627) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509477600000,25.725567) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509477660000,24.127466) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509477720000,22.666962) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509477780000,20.051416) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509477840000,20.141283) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509477900000,24.74467) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509477960000,22.679514) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509478020000,21.21901) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509478080000,25.208117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509478140000,23.206852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509478200000,21.746347) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509478260000,20.285843) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509478320000,22.019135) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509478380000,22.824072) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509478440000,20.813179) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509478500000,22.54647) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509478560000,24.83789) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509478620000,23.239788) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509478680000,24.368612) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509478740000,24.55927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509478800000,23.098766) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509478860000,24.694462) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509478920000,23.435446) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509478980000,24.17649) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509479040000,25.359396) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509479100000,23.761293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509479160000,24.703829) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509479220000,20.43712) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509479280000,20.526989) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509479340000,24.928886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509479400000,22.313341) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509479460000,21.054327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509479520000,25.593822) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509479580000,23.391068) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509479640000,21.930563) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509479700000,21.822424) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509479760000,25.757267) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509479820000,24.159164) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509479880000,22.69866) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509479940000,22.788527) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509480000000,20.374472) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509480060000,24.776371) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509480120000,23.315865) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509480180000,21.250708) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509480240000,25.991692) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509480300000,24.39359) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509480360000,21.778046) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509480420000,20.317541) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509480480000,25.058525) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509480540000,20.65422) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509480600000,21.395266) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509480660000,20.934746) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509480720000,22.668037) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509480780000,22.667019) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509480840000,21.206514) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509480900000,22.939806) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509480960000,23.130465) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509481020000,21.733852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509481080000,23.467144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509481140000,22.00664) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509481200000,22.747684) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509481260000,24.544868) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509481320000,22.533978) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509481380000,24.825396) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509481440000,20.558687) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509481500000,24.960585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509481560000,23.701569) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509481620000,21.086025) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509481680000,25.625519) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509481740000,24.027418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509481800000,22.969707) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509481860000,21.509201) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509481920000,25.49831) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509481980000,23.295555) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509482040000,22.03654) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509482100000,22.126408) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509482160000,20.665903) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509482220000,24.463148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509482280000,22.452255) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509482340000,21.19324) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509482400000,25.128082) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509482460000,23.529982) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509482520000,22.069477) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509482580000,25.65542) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509482640000,24.194916) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509482700000,22.596813) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509482760000,24.330105) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509482820000,20.621525) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509482880000,24.006165) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509482940000,25.601858) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509483000000,20.342905) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509483060000,24.8824) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509483120000,20.81718) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509483180000,25.21908) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509483240000,25.409737) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509483300000,21.14303) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509483360000,25.884014) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509483420000,20.487463) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509483480000,22.220755) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509483540000,21.760235) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509483600000,22.501282) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509483660000,24.298466) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509483720000,22.83796) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509483780000,21.377455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509483840000,24.76191) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509483900000,24.171255) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509483960000,22.71075) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509484020000,20.645592) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509484080000,25.185087) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509484140000,23.788475) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509484200000,21.17293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509484260000,21.262798) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509484320000,25.802292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509484380000,24.204191) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509484440000,22.340523) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509484500000,20.32963) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509484560000,24.869125) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509484620000,22.66637) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509484680000,21.407356) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509484740000,25.946852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509484800000,23.331306) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509484860000,21.733204) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509484920000,21.823072) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509484980000,22.951897) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509485040000,23.692942) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509485100000,22.094841) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509485160000,23.277744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509485220000,24.22028) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509485280000,22.759775) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509485340000,24.35547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509485400000,22.894966) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509485460000,23.287113) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509485520000,25.020405) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509485580000,23.422302) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509485640000,25.713722) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509485700000,21.447014) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509485760000,25.63761) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509485820000,20.241058) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509485880000,21.97435) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509485940000,20.513845) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509486000000,20.060787) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509486060000,23.858032) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509486120000,21.847141) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509486180000,20.386635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509486240000,24.522968) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509486300000,22.924866) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509486360000,23.014732) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509486420000,20.399189) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509486480000,24.938683) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509486540000,23.54207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509486600000,22.081566) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509486660000,20.016409) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509486720000,24.005516) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509486780000,22.608904) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509486840000,20.543747) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509486900000,25.08324) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509486960000,23.622738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509487020000,24.613964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509487080000,20.354996) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509487140000,24.89449) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509487200000,20.62778) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509487260000,21.231232) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509487320000,25.972216) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509487380000,21.155119) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509487440000,21.896166) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509487500000,20.298063) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509487560000,22.232845) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509487620000,20.77234) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509487680000,20.963) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509487740000,22.558693) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509487800000,22.648561) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509487860000,23.591097) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509487920000,25.324389) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509487980000,23.726286) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509488040000,23.916945) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509488100000,20.657682) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509488160000,25.197178) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509488220000,23.599075) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509488280000,21.533918) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509488340000,25.724516) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509488400000,24.264011) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509488460000,22.061256) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509488520000,22.151123) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509488580000,20.690619) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509488640000,24.276564) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509488700000,22.678461) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509488760000,21.217957) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509488820000,25.757452) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509488880000,23.893784) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509488940000,22.295681) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509489000000,20.28479) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509489060000,24.219631) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509489120000,22.15466) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509489180000,22.10693) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509489240000,23.840221) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509489300000,24.03088) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509489360000,22.570375) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509489420000,24.36756) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509489480000,25.108606) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509489540000,23.648102) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509489600000,24.831005) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509489660000,25.635944) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509489720000,24.175438) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509489780000,25.908731) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509489840000,24.448227) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509489900000,20.602047) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509489960000,21.98644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509490020000,20.525936) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509490080000,21.266981) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509490140000,22.862677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509490200000,22.409618) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509490260000,22.600277) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509490320000,24.333569) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509490380000,22.735466) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509490440000,21.476452) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509490500000,25.411293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509490560000,23.4004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509490620000,23.352673) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509490680000,21.287514) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509490740000,20.0285) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509490800000,24.567993) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509490860000,22.969893) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509490920000,20.354347) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509490980000,25.095331) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509491040000,23.634827) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509491100000,21.432072) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509491160000,25.97157) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509491220000,23.356209) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509491280000,21.29105) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509491340000,21.24332) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509491400000,25.782816) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509491460000,21.516108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509491520000,21.908255) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509491580000,20.310154) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509491640000,22.043446) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509491700000,22.784492) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509491760000,21.525476) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509491820000,23.12117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509491880000,23.311829) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509491940000,21.851324) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509492000000,23.786106) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509492060000,23.738377) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509492120000,24.479424) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509492180000,25.662327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509492240000,24.201822) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509492300000,25.812717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509492360000,21.54601) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509492420000,20.085505) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509492480000,20.276161) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509492540000,22.073345) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509492600000,20.61284) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509492660000,25.152336) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509492720000,23.08718) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509492780000,23.03945) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509492840000,21.230047) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509492900000,25.16489) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509492960000,23.704384) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509493020000,22.106283) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509493080000,20.847267) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509493140000,24.231722) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509493200000,22.771217) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509493260000,21.173115) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509493320000,24.50349) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509493380000,23.042986) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509493440000,22.582466) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509493500000,20.379711) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509493560000,24.919207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509493620000,23.66019) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509493680000,25.393482) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509493740000,25.996933) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509493800000,23.98604) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509493860000,25.92082) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509493920000,20.661867) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509493980000,25.063765) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509494040000,20.797056) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509494100000,21.189205) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509494160000,21.279072) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509494220000,22.874767) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509494280000,21.414263) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509494340000,22.155308) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509494400000,24.345657) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509494460000,22.747557) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509494520000,23.488602) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509494580000,25.221893) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509494640000,23.96288) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509494700000,22.364777) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509494760000,25.749233) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509494820000,24.288727) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509494880000,24.378593) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509494940000,22.37733) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509495000000,20.916824) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509495060000,24.905933) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509495120000,22.840775) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509495180000,21.444162) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509495240000,25.983658) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509495300000,24.523153) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509495360000,21.907608) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509495420000,25.705038) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509495480000,24.244534) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509495540000,22.179377) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509495600000,22.269243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509495660000,20.671143) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509495720000,24.257088) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509495780000,22.796581) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509495840000,21.336077) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509495900000,22.931772) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509495960000,23.874308) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509496020000,21.863415) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509496080000,23.596706) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509496140000,24.200155) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509496200000,22.94114) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509496260000,24.67443) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509496320000,20.415462) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509496380000,24.81736) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509496440000,20.550652) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509496500000,25.202286) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509496560000,25.943333) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509496620000,21.539026) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509496680000,25.528133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509496740000,20.470669) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509496800000,22.20396) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509496860000,20.60586) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509496920000,25.145355) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509496980000,22.731298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509497040000,22.821167) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509497100000,21.223064) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509497160000,25.157907) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509497220000,23.697403) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509497280000,21.888) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509497340000,25.685246) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509497400000,24.224741) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509497460000,22.764236) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509497520000,20.699263) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509497580000,24.49651) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509497640000,22.485617) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509497700000,22.575485) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509497760000,20.510326) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509497820000,25.113714) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509497880000,23.65321) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509497940000,21.037664) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509498000000,25.57716) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509498060000,24.180548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509498120000,25.91384) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509498180000,20.654884) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509498240000,24.643993) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509498300000,20.441177) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509498360000,21.182222) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509498420000,21.27209) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509498480000,23.005383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509498540000,21.40728) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509498600000,22.605385) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509498660000,24.338676) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509498720000,22.878172) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509498780000,23.48162) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509498840000,25.4164) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509498900000,23.40551) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509498960000,24.146557) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509499020000,25.74225) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509499080000,24.483234) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509499140000,24.573103) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509499200000,21.957558) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509499260000,20.359455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509499320000,24.89895) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509499380000,23.035282) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509499440000,21.574778) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509499500000,25.976677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509499560000,23.361132) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509499620000,21.29616) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509499680000,25.835653) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509499740000,24.237553) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509499800000,22.172396) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509499860000,21.711874) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509499920000,20.45286) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509499980000,24.250105) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509500040000,22.7896) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509500100000,21.329096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509500160000,24.91504) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509500220000,23.316938) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509500280000,21.856434) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509500340000,23.589725) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509500400000,24.53226) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509500460000,22.934158) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509500520000,24.117062) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509500580000,20.408482) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509500640000,24.947975) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509500700000,21.551117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509500760000,20.090612) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509500820000,20.281271) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509500880000,22.014563) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509500940000,20.61795) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509501000000,21.358995) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509501060000,23.092287) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509501120000,21.081394) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509501180000,21.886333) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509501240000,23.619625) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509501300000,23.709494) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509501360000,22.24899) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509501420000,20.046234) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509501480000,24.236832) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509501540000,22.776325) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509501600000,20.711168) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509501660000,25.113068) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509501720000,23.048094) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509501780000,20.432549) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509501840000,24.972044) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509501900000,23.373943) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509501960000,23.46381) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509502020000,21.600142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509502080000,25.589249) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509502140000,23.991148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509502200000,21.925991) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509502260000,20.666975) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509502320000,25.20647) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509502380000,20.802166) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509502440000,20.992825) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509502500000,25.733809) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509502560000,21.4671) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509502620000,22.070549) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509502680000,22.160416) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509502740000,23.34332) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509502800000,25.091812) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509502860000,23.493711) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509502920000,25.227003) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509502980000,23.766499) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509503040000,24.158646) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509503100000,25.754341) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509503160000,24.293835) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509503220000,25.034882) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509503280000,20.969662) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509503340000,25.371561) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509503400000,21.11259) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509503460000,22.845882) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509503520000,21.38538) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509503580000,25.988766) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509503640000,23.923609) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509503700000,21.912716) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509503760000,20.452211) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509503820000,23.644989) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509503880000,22.184484) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509503940000,20.72398) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509504000000,24.108435) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509504060000,22.711823) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509504120000,22.801691) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509504180000,21.341185) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509504240000,25.276028) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509504300000,23.677925) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509504360000,21.868523) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509504420000,25.803366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509504480000,24.342861) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509504540000,22.744759) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509504600000,24.67954) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509504660000,24.870197) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509504720000,23.409695) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509504780000,25.005388) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509504840000,21.296806) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509504900000,20.843748) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509504960000,22.026653) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509505020000,22.630102) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509505080000,21.169596) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509505140000,23.104378) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509505200000,21.643873) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509505260000,22.247322) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509505320000,23.430225) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509505380000,22.171211) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509505440000,22.912256) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509505500000,24.507952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509505560000,24.59782) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509505620000,24.788477) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509505680000,20.723259) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509505740000,25.125156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509505800000,23.664652) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509505860000,21.599495) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509505920000,24.984135) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509505980000,23.386032) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509506040000,21.320875) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509506100000,25.86037) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509506160000,24.601357) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509506220000,24.553627) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509506280000,21.93808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509506340000,20.477575) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509506400000,25.01707) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509506460000,23.015806) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509506520000,21.555302) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509506580000,25.544409) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509506640000,23.479252) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509506700000,22.08264) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509506760000,20.622133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509506820000,22.355427) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509506880000,22.546085) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509506940000,22.498356) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509507000000,25.239094) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509507060000,25.980139) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509507120000,24.519634) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509507180000,20.11533) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509507240000,20.507477) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509507300000,25.046972) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509507360000,20.780264) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509507420000,25.182161) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509507480000,20.124697) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509507540000,21.307602) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509507600000,25.847095) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509507660000,22.000917) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509507720000,23.73421) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509507780000,22.475193) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509507840000,22.665852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509507900000,24.261547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509507960000,22.801043) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509508020000,20.73607) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509508080000,24.670914) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509508140000,23.072811) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509508200000,21.061918) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509508260000,25.19825) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509508320000,23.737745) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509508380000,23.690016) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509508440000,22.229511) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509508500000,25.613966) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509508560000,24.35495) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509508620000,22.75685) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509508680000,20.691692) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509508740000,25.231186) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509508800000,23.421783) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509508860000,21.21903) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509508920000,25.758526) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509508980000,24.29802) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509509040000,21.038757) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509509100000,23.19258) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509509160000,21.181686) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509509220000,22.914978) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509509280000,23.656025) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509509340000,22.259413) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509509400000,23.992704) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509509460000,24.183363) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509509520000,22.722858) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509509580000,24.520042) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509509640000,23.059536) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509509700000,23.800583) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509509760000,24.983486) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509509820000,24.935757) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509509880000,25.878292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509509940000,21.611584) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509510000000,20.15108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509510060000,24.552979) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509510120000,21.332966) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509510180000,25.87246) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509510240000,24.411957) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509510300000,22.209202) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509510360000,20.950186) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509510420000,24.939293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509510480000,22.874136) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509510540000,22.826406) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509510600000,21.365902) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509510660000,20.106886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509510720000,23.49134) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509510780000,21.89324) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509510840000,20.432735) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509510900000,24.569067) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509510960000,23.108562) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509511020000,21.51046) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509511080000,24.894915) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509511140000,24.441856) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509511200000,24.531723) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509511260000,20.127419) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509511320000,20.868465) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509511380000,24.857573) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509511440000,20.792353) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509511500000,21.395803) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509511560000,25.935299) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509511620000,21.66859) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509511680000,22.060738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509511740000,20.462635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509511800000,22.195927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509511860000,20.735422) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509511920000,23.02684) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509511980000,24.824024) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509512040000,22.813133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509512100000,23.554178) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509512160000,25.28747) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509512220000,23.084902) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509512280000,21.624395) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509512340000,25.00885) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509512400000,23.548347) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509512460000,22.151733) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509512520000,20.086576) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509512580000,24.626072) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509512640000,24.165552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509512700000,21.962797) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509512760000,20.703781) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509512820000,25.243277) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509512880000,23.782772) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509512940000,21.580019) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509513000000,25.770615) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509513060000,24.31011) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509513120000,22.244953) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509513180000,20.64685) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509513240000,21.0891) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509513300000,24.473555) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509513360000,24.563423) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509513420000,22.96532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509513480000,24.698612) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509513540000,25.641148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509513600000,23.630255) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509513660000,25.22595) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509513720000,25.966995) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509513780000,24.707981) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509513840000,20.441273) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509513900000,24.84317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509513960000,25.033829) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509514020000,20.96861) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509514080000,21.058477) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509514140000,21.661926) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509514200000,23.395218) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509514260000,21.384327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509514320000,21.520905) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509514380000,23.1166) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509514440000,21.656094) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509514500000,20.19559) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509514560000,23.781534) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509514620000,22.183432) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509514680000,20.722927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509514740000,24.65777) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509514800000,24.747639) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509514860000,23.351025) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509514920000,20.735481) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509514980000,25.274975) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509515040000,23.81447) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509515100000,22.417858) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509515160000,20.352701) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509515220000,24.341808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509515280000,22.881304) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509515340000,21.685995) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509515400000,20.22549) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509515460000,20.315357) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509515520000,23.699814) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509515580000,22.101711) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509515640000,20.842695) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509515700000,22.575987) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509515760000,23.317034) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509515820000,21.718931) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509515880000,23.103325) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509515940000,23.844372) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509516000000,22.383867) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509516060000,23.97956) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509516120000,22.720547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509516180000,24.461576) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509516240000,20.194868) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509516300000,24.596767) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509516360000,25.337812) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509516420000,20.466637) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509516480000,24.455744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509516540000,25.059193) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509516600000,20.792484) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509516660000,25.53347) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509516720000,24.072964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509516780000,21.87021) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509516840000,25.859318) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509516900000,25.949186) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509516960000,24.085518) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509517020000,22.487415) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509517080000,21.02691) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509517140000,24.411366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509517200000,23.152351) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509517260000,21.554249) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509517320000,20.093744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509517380000,24.028587) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509517440000,23.02514) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509517500000,21.427038) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509517560000,25.361881) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509517620000,25.451748) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509517680000,23.991243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509517740000,25.788427) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509517800000,25.979086) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509517860000,24.518581) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509517920000,20.251873) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509517980000,21.056812) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509518040000,25.596306) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509518100000,20.779211) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509518160000,21.520258) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509518220000,20.123644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509518280000,21.856936) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509518340000,21.946804) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509518400000,22.137463) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509518460000,23.733158) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509518520000,21.668184) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509518580000,22.409231) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509518640000,24.142523) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509518700000,22.54442) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509518760000,22.93657) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509518820000,24.66986) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509518880000,23.209354) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509518940000,21.611254) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509519000000,25.747585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509519060000,25.287066) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509519120000,23.826561) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509519180000,21.623806) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509519240000,20.163301) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509519300000,24.904285) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509519360000,22.288742) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509519420000,20.69064) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509519480000,25.230135) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509519540000,24.777077) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509519600000,22.711918) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509519660000,21.113817) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509519720000,20.653296) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509519780000,24.588139) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509519840000,23.329124) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509519900000,21.731022) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509519960000,23.464314) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509520020000,23.654972) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509520080000,22.395956) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509520140000,23.991652) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509520200000,24.732697) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509520260000,23.272192) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509520320000,24.656586) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509520380000,25.260035) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509520440000,25.349903) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509520500000,21.083195) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509520560000,25.622688) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509520620000,25.621672) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509520680000,20.804575) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509520740000,25.34407) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509520800000,20.085117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509520860000,21.882301) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509520920000,20.421797) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509520980000,20.612453) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509521040000,22.345745) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509521100000,20.949133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509521160000,21.039001) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509521220000,24.973843) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509521280000,22.962952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509521340000,21.36485) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509521400000,25.501183) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509521460000,24.040676) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509521520000,22.580172) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509521580000,20.98207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509521640000,25.37397) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509521700000,23.913467) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509521760000,22.452961) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509521820000,20.250208) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509521880000,20.340075) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509521940000,24.53067) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509522000000,22.465515) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509522060000,20.867413) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509522120000,25.406908) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509522180000,21.341688) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509522240000,21.532347) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509522300000,25.934246) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509522360000,21.667538) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509522420000,22.610073) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509522480000,21.149567) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509522540000,22.745262) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509522600000,24.486294) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509522660000,23.025787) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509522720000,24.154613) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509522780000,22.55651) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509522840000,23.297558) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509522900000,24.480461) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509522960000,23.221445) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509523020000,23.824894) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509523080000,25.558186) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509523140000,24.097681) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509523200000,24.48983) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509523260000,20.085524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509523320000,20.175392) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509523380000,24.714886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509523440000,22.64973) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509523500000,21.253117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509523560000,25.242226) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509523620000,23.177067) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509523680000,21.716562) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509523740000,21.125906) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509523800000,25.665401) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509523860000,23.049856) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509523920000,21.589352) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509523980000,21.541622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509524040000,25.677954) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509524100000,24.21745) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509524160000,22.206558) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509524220000,20.003803) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509524280000,24.744787) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509524340000,23.284283) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509524400000,25.017574) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509524460000,25.621023) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509524520000,23.81162) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509524580000,25.544912) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509524640000,20.285957) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509524700000,20.238228) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509524760000,21.971521) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509524820000,21.55771) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509524880000,20.097206) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509524940000,21.692902) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509525000000,20.232397) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509525060000,21.174932) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509525120000,22.357836) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509525180000,20.759735) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509525240000,21.50078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509525300000,23.435562) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509525360000,21.975058) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509525420000,21.927326) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509525480000,25.311783) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509525540000,23.851276) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509525600000,22.592262) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509525660000,20.389507) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509525720000,24.929003) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509525780000,22.91811) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509525840000,21.8604) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509525900000,20.262297) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509525960000,24.801792) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509526020000,23.341288) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509526080000,20.92723) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509526140000,20.879503) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509526200000,25.418997) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509526260000,23.35384) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509526320000,21.893335) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509526380000,20.496723) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509526440000,23.881178) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509526500000,22.420673) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509526560000,20.960169) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509526620000,22.757353) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509526680000,23.498398) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509526740000,21.487507) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509526800000,23.220798) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509526860000,25.374619) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509526920000,23.309647) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509526980000,25.042938) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509527040000,25.233597) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509527100000,23.635496) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509527160000,25.570276) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509527220000,24.109772) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509527280000,24.850819) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509527340000,20.446512) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509527400000,24.63711) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509527460000,25.378155) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509527520000,21.111446) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509527580000,21.063717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509527640000,25.603212) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509527700000,23.189157) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509527760000,21.728653) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509527820000,20.13055) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509527880000,24.065393) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509527940000,23.612335) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509528000000,21.601442) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509528060000,25.398687) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509528120000,23.938183) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509528180000,22.679167) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509528240000,22.769035) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509528300000,20.56628) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509528360000,24.555387) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509528420000,23.094883) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509528480000,21.231215) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509528540000,25.633114) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509528600000,24.17261) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509528660000,21.557064) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509528720000,20.298048) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509528780000,24.699947) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509528840000,20.433239) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509528900000,21.174284) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509528960000,20.713764) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509529020000,21.70499) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509529080000,22.446037) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509529140000,20.985533) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509529200000,22.718824) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509529260000,21.322212) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509529320000,21.51287) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509529380000,23.246162) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509529440000,21.785658) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509529500000,22.590595) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509529560000,24.323887) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509529620000,22.312996) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509529680000,24.604414) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509529740000,20.200108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509529800000,24.941093) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509529860000,23.480587) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509529920000,20.865044) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509529980000,25.266941) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509530040000,23.918575) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509530100000,21.853416) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509530160000,20.392912) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509530220000,24.794811) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509530280000,22.380754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509530340000,20.92025) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509530400000,21.010118) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509530460000,25.412016) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509530520000,23.346859) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509530580000,21.537455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509530640000,20.07695) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509530700000,23.874197) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509530760000,22.413692) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509530820000,21.154676) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509530880000,24.539131) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509530940000,22.941029) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509531000000,21.480524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509531060000,22.609348) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509531120000,24.900768) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509531180000,23.302666) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509531240000,24.485569) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509531300000,25.226616) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509531360000,23.9676) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509531420000,25.563295) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509531480000,24.10279) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509531540000,24.29345) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509531600000,20.22823) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509531660000,24.630127) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509531720000,25.371174) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509531780000,21.104465) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509531840000,20.643946) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509531900000,21.448883) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509531960000,23.182175) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509532020000,21.72167) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509532080000,20.261166) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509532140000,25.065857) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509532200000,23.054966) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509532260000,21.59446) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509532320000,25.529303) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509532380000,24.13269) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509532440000,22.672186) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509532500000,20.05664) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509532560000,20.14651) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509532620000,24.548407) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509532680000,23.28939) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509532740000,21.224234) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509532800000,25.21334) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509532860000,23.61524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509532920000,21.751572) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509532980000,20.291067) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509533040000,24.830563) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509533100000,20.426256) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509533160000,20.012447) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509533220000,20.102314) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509533280000,21.835606) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509533340000,22.439056) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509533400000,20.978552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509533460000,22.362944) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509533520000,23.10399) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509533580000,21.505888) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509533640000,23.239182) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509533700000,21.980165) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509533760000,22.170824) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509533820000,23.766518) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509533880000,22.306013) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509533940000,24.597431) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509534000000,20.532213) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509534060000,24.93411) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509534120000,25.12477) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509534180000,20.85806) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509534240000,20.405003) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509534300000,24.8069) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509534360000,22.741743) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509534420000,20.73085) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509534480000,25.471836) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509534540000,23.269081) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509534600000,21.808577) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509534660000,21.898443) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509534720000,25.282898) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509534780000,23.886286) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509534840000,22.425781) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509534900000,20.965277) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509534960000,24.90012) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509535020000,23.503506) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509535080000,21.492615) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509535140000,25.427456) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509535200000,23.966951) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509535260000,21.764383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509535320000,23.497675) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509535380000,25.238705) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509535440000,23.7782) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509535500000,25.373896) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509535560000,20.316431) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509535620000,24.855927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509535680000,20.03883) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509535740000,20.642279) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509535800000,25.383263) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509535860000,21.116556) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509535920000,25.656052) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509535980000,20.2595) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509536040000,21.643894) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509536100000,21.73376) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509536160000,22.474808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509536220000,24.070501) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509536280000,22.609997) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509536340000,23.808102) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509536400000,25.541393) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509536460000,23.94329) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509536520000,22.482786) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509536580000,20.619118) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509536640000,24.608227) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509536700000,23.010124) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509536760000,20.944967) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509536820000,21.034834) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509536880000,25.775818) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509536940000,24.177717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509537000000,21.562172) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509537060000,20.101667) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509537120000,24.842651) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509537180000,22.639896) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509537240000,21.179392) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509537300000,25.168499) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509537360000,22.498875) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509537420000,20.900774) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509537480000,20.99064) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509537540000,22.723932) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509537600000,22.91459) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509537660000,21.517979) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509537720000,23.25127) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509537780000,23.992317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509537840000,22.53181) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509537900000,24.328995) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509537960000,24.519653) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509538020000,23.059149) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509538080000,24.792442) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509538140000,23.395828) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509538200000,25.687248) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509538260000,20.870152) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509538320000,25.409647) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509538380000,20.013096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509538440000,22.753834) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509538500000,21.29333) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509538560000,21.483986) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509538620000,23.079681) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509538680000,21.820667) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509538740000,20.36016) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509538800000,24.295004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509538860000,22.696903) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509538920000,22.236382) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509538980000,20.372715) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509539040000,24.912209) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509539100000,23.314108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509539160000,21.853603) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509539220000,25.439547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509539280000,23.979042) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509539340000,22.38094) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509539400000,20.315783) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509539460000,24.25081) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509539520000,22.239918) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509539580000,20.037165) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509539640000,20.127031) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509539700000,24.666527) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509539760000,20.601309) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509539820000,21.204758) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509539880000,25.193865) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509539940000,20.927156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509540000000,21.869692) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509540060000,20.27159) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509540120000,22.004883) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509540180000,22.19554) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509540240000,20.936523) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509540300000,22.532219) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509540360000,22.622087) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509540420000,23.363132) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509540480000,24.546038) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509540540000,23.955381) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509540600000,24.696426) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509540660000,20.42972) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509540720000,24.969215) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509540780000,23.572601) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509540840000,20.957056) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509540900000,25.496552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509540960000,24.036047) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509541020000,22.034782) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509541080000,22.12465) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509541140000,20.113758) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509541200000,24.0486) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509541260000,22.450499) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509541320000,21.191483) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509541380000,25.730978) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509541440000,23.115433) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509541500000,21.51733) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509541560000,25.452358) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509541620000,23.387201) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509541680000,21.926697) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509541740000,21.878967) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509541800000,25.263422) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509541860000,24.004406) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509541920000,22.543901) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509541980000,24.139597) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509542040000,24.880642) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509542100000,23.07124) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509542160000,24.804531) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509542220000,25.40798) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509542280000,23.947475) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509542340000,25.882256) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509542400000,20.072914) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509542460000,20.025185) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509542520000,21.758478) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509542580000,20.297974) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509542640000,22.046465) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509542700000,23.642159) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509542760000,21.631268) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509542820000,22.372313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509542880000,24.307095) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509542940000,22.708992) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509543000000,21.248487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509543060000,24.632942) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509543120000,23.373928) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509543180000,23.326199) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509543240000,21.26104) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509543300000,25.800535) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509543360000,23.789642) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509543420000,21.788378) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509543480000,20.327873) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509543540000,24.867369) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509543600000,23.406864) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509543660000,20.599642) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509543720000,24.588749) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509543780000,23.128244) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509543840000,21.063087) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509543900000,21.015358) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509543960000,25.756342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509544020000,23.140797) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509544080000,21.680292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509544140000,20.082191) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509544200000,22.016972) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509544260000,22.758018) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509544320000,20.747126) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509544380000,22.34282) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509544440000,23.285355) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509544500000,21.82485) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509544560000,23.558142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509544620000,23.510412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509544680000,23.70107) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509544740000,20.441809) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509544800000,24.981304) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509544860000,25.584753) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509544920000,21.318045) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509544980000,25.508642) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509545040000,20.24969) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509545100000,21.845383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509545160000,20.384878) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509545220000,25.125862) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509545280000,22.510319) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509545340000,22.46259) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509545400000,21.002083) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509545460000,24.936926) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509545520000,23.67791) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509545580000,22.07981) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509545640000,25.464264) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509545700000,24.00376) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509545760000,21.938786) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509545820000,20.340685) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509545880000,24.275528) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509545940000,22.264635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509546000000,22.354504) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509546060000,20.353237) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509546120000,24.892733) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509546180000,23.432228) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509546240000,20.816683) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509546300000,25.42007) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509546360000,23.959566) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509546420000,25.692858) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509546480000,20.433903) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509546540000,25.03729) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509546600000,20.220196) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509546660000,20.96124) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509546720000,21.05111) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509546780000,22.646803) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509546840000,23.089052) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509546900000,23.27971) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509546960000,25.013002) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509547020000,23.414902) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509547080000,24.357437) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509547140000,20.090729) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509547200000,24.079836) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509547260000,24.683285) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509547320000,20.618065) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509547380000,25.157562) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509547440000,25.247429) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509547500000,23.044674) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509547560000,21.033781) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509547620000,25.774767) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509547680000,23.709608) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509547740000,22.111507) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509547800000,20.651003) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509547860000,23.43099) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509547920000,21.970486) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509547980000,20.372383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509548040000,24.911879) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509548100000,23.04821) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509548160000,22.58769) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509548220000,20.989588) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509548280000,24.92443) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509548340000,23.463926) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509548400000,22.20491) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509548460000,23.800606) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509548520000,23.991264) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509548580000,22.53076) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509548640000,24.46554) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509548700000,25.068989) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509548760000,23.608484) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509548820000,24.79139) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509548880000,21.082808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509548940000,20.492151) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509549000000,22.225443) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509549060000,20.764938) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509549120000,20.955597) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509549180000,22.75278) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509549240000,21.292276) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509549300000,22.033321) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509549360000,23.766613) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509549420000,22.37) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509549480000,22.56066) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509549540000,24.293951) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509549600000,24.38382) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509549660000,22.785717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509549720000,20.922049) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509549780000,24.911156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509549840000,23.450651) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509549900000,21.247898) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509549960000,25.182926) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509550020000,23.72242) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509550080000,21.106876) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509550140000,25.508774) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509550200000,24.249758) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509550260000,24.339626) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509550320000,22.274467) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509550380000,20.676367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509550440000,24.665474) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509550500000,22.801805) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509550560000,21.341301) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509550620000,25.743198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509550680000,21.476492) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509550740000,21.868639) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509550800000,20.408134) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509550860000,22.00383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509550920000,22.744875) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509550980000,22.834743) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509551040000,25.025093) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509551100000,25.628542) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509551160000,24.168037) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509551220000,25.901329) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509551280000,24.642313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509551340000,25.245762) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509551400000,20.428667) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509551460000,24.968163) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509551520000,25.910698) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509551580000,21.506392) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509551640000,20.045887) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509551700000,21.786919) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509551760000,23.52021) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509551820000,22.123596) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509551880000,20.663092) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509551940000,24.597935) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509552000000,22.587042) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509552060000,20.384474) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509552120000,24.319317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509552180000,22.85881) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509552240000,21.398306) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509552300000,20.001694) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509552360000,23.386148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509552420000,23.476017) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509552480000,22.01551) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509552540000,25.812757) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509552600000,24.553741) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509552660000,22.542849) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509552720000,20.477692) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509552780000,24.87959) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509552840000,23.620575) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509552900000,25.353867) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509552960000,25.544525) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509553020000,23.946423) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509553080000,20.68716) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509553140000,22.978579) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509553200000,21.518074) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509553260000,23.11377) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509553320000,23.304428) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509553380000,22.045412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509553440000,23.778704) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509553500000,22.180603) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509553560000,22.921648) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509553620000,24.306042) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509553680000,22.845537) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509553740000,23.448986) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509553800000,25.182278) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509553860000,25.272144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509553920000,25.664293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509553980000,21.259987) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509554040000,25.799484) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509554100000,24.338978) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509554160000,21.669353) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509554220000,20.07125) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509554280000,24.06036) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509554340000,21.995201) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509554400000,20.736187) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509554460000,25.138084) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509554520000,25.227951) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509554580000,22.612408) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509554640000,21.151901) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509554700000,25.75529) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509554760000,23.690132) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509554820000,22.229628) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509554880000,20.218735) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509554940000,24.21747) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509555000000,22.756966) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509555060000,21.296461) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509555120000,23.029753) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509555180000,24.640648) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509555240000,24.180126) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509555300000,25.913418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509555360000,20.654465) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509555420000,25.056364) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509555480000,20.991144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509555540000,21.181803) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509555600000,25.721298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509555660000,21.316994) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509555720000,20.057978) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509555780000,20.799023) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509555840000,21.981928) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509555900000,20.383825) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509555960000,22.675243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509556020000,24.610025) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509556080000,23.14952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509556140000,21.551418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509556200000,24.935873) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509556260000,22.870901) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509556320000,21.410397) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509556380000,25.207642) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509556440000,23.747137) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509556500000,21.937735) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509556560000,25.872578) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509556620000,24.274475) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509556680000,24.364342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509556740000,22.903837) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509556800000,20.489782) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509556860000,24.89168) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509556920000,23.431175) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509556980000,21.366018) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509557040000,20.107002) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509557100000,24.5089) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509557160000,21.893356) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509557220000,20.432852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509557280000,25.979792) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509557340000,21.575487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509557400000,23.866905) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509557460000,21.856012) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509557520000,23.589304) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509557580000,24.394243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509557640000,22.933739) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509557700000,24.66703) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509557760000,24.857689) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509557820000,23.461077) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509557880000,25.194368) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509557940000,23.733864) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509558000000,24.474909) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509558060000,20.272093) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509558120000,25.811573) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509558180000,20.55262) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509558240000,22.285912) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509558300000,20.687809) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509558360000,24.622837) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509558420000,22.007292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509558480000,20.546787) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509558540000,24.948685) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509558600000,23.085018) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509558660000,21.624512) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509558720000,25.61362) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509558780000,23.410866) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509558840000,23.500732) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509558900000,22.241718) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509558960000,20.781212) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509559020000,24.578459) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509559080000,22.567566) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509559140000,21.30855) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509559200000,25.243393) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509559260000,23.64529) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509559320000,22.184786) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509559380000,20.576687) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509559440000,25.116182) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509559500000,25.068453) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509559560000,20.801744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509559620000,21.542791) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509559680000,25.733387) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509559740000,21.329082) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509559800000,22.07013) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509559860000,20.609623) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509559920000,22.544405) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509559980000,20.946304) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509560040000,21.136961) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509560100000,22.870253) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509560160000,21.611238) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509560220000,23.76506) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509560280000,25.498352) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509560340000,23.48746) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509560400000,24.228504) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509560460000,25.219732) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509560520000,23.759228) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509560580000,22.298723) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509560640000,25.683178) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509560700000,24.286564) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509560760000,22.826061) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509560820000,20.760902) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509560880000,25.300398) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509560940000,25.252668) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509561000000,22.838614) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509561060000,21.378107) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509561120000,25.917603) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509561180000,24.319502) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509561240000,22.455833) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509561300000,20.44494) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509561360000,24.984436) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509561420000,22.781681) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509561480000,22.328623) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509561540000,20.868118) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509561600000,24.252573) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509561660000,24.204844) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509561720000,22.744339) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509561780000,24.67912) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509561840000,25.420166) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509561900000,23.822063) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509561960000,25.004969) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509562020000,25.947504) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509562080000,24.487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509562140000,20.082693) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509562200000,24.622189) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509562260000,25.014336) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509562320000,20.74763) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509562380000,20.6999) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509562440000,21.440945) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509562500000,23.174236) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509562560000,20.558876) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509562620000,21.162327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509562680000,22.895618) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509562740000,21.435114) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509562800000,20.176098) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509562860000,23.973343) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509562920000,21.96245) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509562980000,20.501945) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509563040000,24.638279) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509563100000,24.59055) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509563160000,23.130043) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509563220000,20.514498) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509563280000,25.053993) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509563340000,23.657381) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509563400000,22.196877) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509563460000,20.13172) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509563520000,24.120827) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509563580000,22.634863) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509563640000,20.569706) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509563700000,25.109201) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509563760000,25.199068) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509563820000,20.794764) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509563880000,21.18691) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509563940000,25.726406) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509564000000,21.459698) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509564060000,22.063147) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509564120000,20.804132) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509564180000,21.987036) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509564240000,22.728083) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509564300000,21.12998) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509564360000,23.064762) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509564420000,21.604256) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509564480000,23.345287) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509564540000,24.940983) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509564600000,23.480476) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509564660000,23.617056) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509564720000,25.350348) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509564780000,23.752245) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509564840000,23.942904) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509564900000,25.877686) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509564960000,24.41718) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509565020000,22.819078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509565080000,20.753922) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509565140000,24.944519) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509565200000,25.034386) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509565260000,22.83163) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509565320000,21.371126) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509565380000,25.910622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509565440000,23.496567) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509565500000,21.898464) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509565560000,20.43796) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509565620000,24.977455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509565680000,23.919743) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509565740000,22.321642) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509565800000,20.31075) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509565860000,24.245592) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509565920000,24.335459) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509565980000,22.938847) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509566040000,24.672138) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509566100000,24.862797) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509566160000,23.402292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509566220000,25.199476) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509566280000,25.940521) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509566340000,24.480019) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509566400000,25.662922) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509566460000,20.46786) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509566520000,25.007355) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509566580000,20.740646) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509566640000,20.830515) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509566700000,21.433964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509566760000,22.0124) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509566820000,20.551895) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509566880000,21.292942) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509566940000,22.888636) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509567000000,21.629622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509567060000,21.820278) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509567120000,23.55357) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509567180000,21.95547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509567240000,20.696453) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509567300000,24.631296) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509567360000,24.170776) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509567420000,22.572674) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509567480000,20.507517) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509567540000,25.2485) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509567600000,23.787996) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509567660000,22.189896) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509567720000,25.57435) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509567780000,25.121292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509567840000,23.660786) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509567900000,21.458033) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509567960000,25.997528) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509568020000,25.537006) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509568080000,23.67334) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509568140000,22.075237) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509568200000,20.614733) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509568260000,22.348024) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509568320000,22.740171) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509568380000,21.14207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509568440000,22.875362) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509568500000,23.616407) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509568560000,22.357391) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509568620000,23.953087) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509568680000,24.143745) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509568740000,24.233612) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509568800000,25.966904) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509568860000,23.764336) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509568920000,24.505383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509568980000,25.688286) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509569040000,24.227781) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509569100000,25.032719) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509569160000,20.766012) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509569220000,25.305506) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509569280000,25.496164) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509569340000,21.293348) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509569400000,25.832844) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509569460000,25.92271) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509569520000,23.857555) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509569580000,22.259453) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509569640000,20.450048) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509569700000,24.384892) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509569760000,22.924387) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509569820000,21.326286) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509569880000,20.873226) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509569940000,24.257683) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509570000000,22.797176) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509570060000,21.199076) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509570120000,25.335407) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509570180000,25.425274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509570240000,23.414383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509570300000,21.211628) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509570360000,25.751123) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509570420000,24.492107) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509570480000,20.225399) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509570540000,20.828848) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509570600000,24.817955) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509570660000,20.752737) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509570720000,21.493782) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509570780000,25.895681) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509570840000,21.628973) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509570900000,23.370003) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509570960000,21.30503) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509571020000,22.900726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509571080000,21.440222) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509571140000,22.181267) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509571200000,23.56566) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509571260000,21.96756) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509571320000,22.708605) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509571380000,24.441896) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509571440000,23.182882) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509571500000,21.58478) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509571560000,24.969234) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509571620000,25.059101) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509571680000,23.598598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509571740000,21.597332) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509571800000,20.136827) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509571860000,24.125935) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509571920000,22.060778) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509571980000,21.470121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509572040000,20.009617) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509572100000,24.549112) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509572160000,21.933567) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509572220000,20.536955) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509572280000,20.626822) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509572340000,24.561665) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509572400000,23.10116) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509572460000,21.50306) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509572520000,25.089003) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509572580000,23.628498) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509572640000,22.167994) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509572700000,23.763687) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509572760000,24.706223) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509572820000,22.695332) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509572880000,24.428623) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509572940000,25.032072) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509573000000,25.121939) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509573060000,20.250763) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509573120000,20.441422) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509573180000,24.84332) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509573240000,20.576612) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509573300000,25.317596) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509573360000,20.058643) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509573420000,21.654337) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509573480000,25.643444) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509573540000,20.58598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509573600000,22.319271) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509573660000,20.72117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509573720000,20.811037) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509573780000,24.195492) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509573840000,22.936478) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509573900000,21.338375) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509573960000,25.273218) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509574020000,23.812714) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509574080000,22.809267) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509574140000,20.606512) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509574200000,25.146008) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509574260000,23.685503) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509574320000,22.426487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509574380000,20.223734) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509574440000,25.763212) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509574500000,24.302708) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509574560000,22.23755) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509574620000,20.840939) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509574680000,25.380434) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509574740000,22.764889) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509574800000,21.304384) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509574860000,25.907772) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509574920000,21.641064) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509574980000,22.382109) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509575040000,20.371216) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509575100000,21.362444) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509575160000,23.653862) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509575220000,22.193357) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509575280000,23.92665) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509575340000,22.328548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509575400000,22.720695) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509575460000,24.453987) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509575520000,22.993483) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509575580000,23.596931) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509575640000,25.531712) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509575700000,23.52082) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509575760000,24.261866) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509575820000,25.857561) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509575880000,25.947428) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509575940000,24.688412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509576000000,22.072868) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509576060000,20.474766) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509576120000,25.014261) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509576180000,23.95655) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509576240000,22.496044) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509576300000,20.897943) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509576360000,24.282398) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509576420000,23.023382) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509576480000,21.562878) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509576540000,21.515148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509576600000,25.449991) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509576660000,23.439098) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509576720000,22.180082) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509576780000,25.97733) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509576840000,24.516825) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509576900000,23.05632) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509576960000,20.642263) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509577020000,25.044163) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509577080000,23.583656) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509577140000,25.316948) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509577200000,25.453527) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509577260000,25.405798) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509577320000,20.588701) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509577380000,21.329748) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509577440000,25.869244) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509577500000,21.666428) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509577560000,20.205923) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509577620000,20.396582) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509577680000,22.129873) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509577740000,20.733261) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509577800000,21.474306) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509577860000,23.207598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509577920000,21.196705) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509577980000,23.350527) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509578040000,25.285309) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509578100000,23.824802) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509578160000,22.364298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509578220000,20.161545) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509578280000,25.158098) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509578340000,23.697594) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509578400000,21.632435) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509578460000,20.034334) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509578520000,24.775318) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509578580000,22.159773) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509578640000,20.699268) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509578700000,20.651539) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509578760000,25.191034) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509578820000,23.327366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509578880000,21.316473) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509578940000,25.718372) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509579000000,23.653215) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509579060000,22.3942) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509579120000,20.933695) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509579180000,22.529388) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509579240000,22.720047) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509579300000,20.655075) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509579360000,22.388367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509579420000,24.542189) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509579480000,23.081684) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509579540000,24.264587) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509579600000,25.207123) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509579660000,23.60902) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509579720000,25.342312) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509579780000,23.88181) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509579840000,24.273956) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509579900000,25.869652) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509579960000,24.409145) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509580020000,25.150192) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509580080000,21.084972) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509580140000,21.037243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509580200000,21.227901) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509580260000,22.961193) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509580320000,21.500689) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509580380000,21.805342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509580440000,25.740185) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509580500000,23.729292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509580560000,22.268787) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509580620000,20.26752) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509580680000,24.807016) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509580740000,23.346512) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509580800000,20.730967) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509580860000,20.683237) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509580920000,25.424221) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509580980000,23.963717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509581040000,21.89856) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509581100000,20.300459) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509581160000,24.491055) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509581220000,22.425898) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509581280000,20.965393) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509581340000,25.36729) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509581400000,20.496115) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509581460000,20.686773) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509581520000,20.776642) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509581580000,22.372335) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509581640000,23.113382) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509581700000,21.854366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509581760000,23.03727) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509581820000,23.64072) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509581880000,22.180214) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509581940000,24.114996) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509582000000,22.654491) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509582060000,23.25794) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509582120000,24.440845) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509582180000,23.18183) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509582240000,25.473248) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509582300000,21.068943) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509582360000,25.608437) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509582420000,25.799095) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509582480000,22.539833) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509582540000,20.941732) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509582600000,25.481228) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509582660000,23.416069) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509582720000,21.606667) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509582780000,20.008564) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509582840000,23.943407) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509582900000,22.482903) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509582960000,22.57277) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509583020000,21.176157) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509583080000,24.560612) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509583140000,23.100107) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509583200000,21.639603) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509583260000,25.638338) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509583320000,24.177834) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509583380000,22.16694) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509583440000,20.101784) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509583500000,23.899214) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509583560000,22.43871) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509583620000,24.172) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509583680000,25.913033) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509583740000,24.31493) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509583800000,20.24971) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509583860000,20.990757) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509583920000,25.530252) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509583980000,21.125946) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509584040000,21.518095) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509584100000,20.05759) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509584160000,21.790882) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509584220000,20.19278) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509584280000,21.135315) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509584340000,22.318218) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509584400000,22.408087) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509584460000,23.011536) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509584520000,24.744827) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509584580000,24.291769) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509584640000,24.482428) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509584700000,20.078123) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509584760000,24.617619) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509584820000,23.358603) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509584880000,21.293444) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509584940000,25.695343) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509585000000,23.68445) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509585060000,21.820782) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509585120000,21.91065) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509585180000,20.312548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509585240000,24.852043) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509585300000,22.236498) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509585360000,20.977482) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509585420000,25.379381) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509585480000,23.314224) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509585540000,21.85372) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509585600000,25.23836) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509585660000,23.035604) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509585720000,21.5751) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509585780000,21.664967) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509585840000,23.398258) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509585900000,24.203197) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509585960000,22.192305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509586020000,23.925596) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509586080000,24.666643) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509586140000,23.270031) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509586200000,25.003323) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509586260000,25.193981) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509586320000,23.733475) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509586380000,25.530659) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509586440000,24.070156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509586500000,20.361572) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509586560000,21.544477) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509586620000,25.946377) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509586680000,21.694868) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509586740000,23.42816) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509586800000,21.967655) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509586860000,20.369553) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509586920000,23.955498) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509586980000,22.494993) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509587040000,21.034487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509587100000,24.831734) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509587160000,23.572718) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509587220000,23.112198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509587280000,21.04704) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509587340000,25.448938) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509587400000,23.988434) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509587460000,22.729418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509587520000,20.113873) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509587580000,24.515772) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509587640000,23.055267) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509587700000,20.385641) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509587760000,24.925137) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509587820000,23.327036) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509587880000,20.71149) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509587940000,20.801357) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509588000000,25.542343) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509588060000,21.138037) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509588120000,21.879084) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509588180000,25.86819) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509588240000,21.80297) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509588300000,22.406422) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509588360000,20.945915) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509588420000,22.679207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509588480000,23.071356) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509588540000,21.473253) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509588600000,23.206545) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509588660000,23.296413) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509588720000,24.03746) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509588780000,20.6406) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509588840000,24.629707) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509588900000,25.370754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509588960000,21.104046) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509589020000,25.707432) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509589080000,24.24693) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509589140000,21.631384) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509589200000,20.170877) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509589260000,24.774265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509589320000,22.709108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509589380000,22.798977) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509589440000,20.788084) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509589500000,24.58533) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509589560000,23.326313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509589620000,21.865808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509589680000,20.405304) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509589740000,24.202549) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509589800000,21.587189) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509589860000,20.126684) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509589920000,24.061527) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509589980000,22.463427) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509590040000,22.553293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509590100000,20.139236) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509590160000,24.678734) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509590220000,23.080631) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509590280000,24.813923) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509590340000,25.756458) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509590400000,23.745565) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509590460000,25.34126) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509590520000,20.082306) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509590580000,24.823292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509590640000,20.556583) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509590700000,24.95848) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509590760000,20.699512) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509590820000,22.432804) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509590880000,21.979744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509590940000,22.583195) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509591000000,24.316486) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509591060000,22.305593) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509591120000,23.248129) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509591180000,24.843822) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509591240000,23.38332) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509591300000,21.922813) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509591360000,25.508759) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509591420000,23.910656) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509591480000,24.000523) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509591540000,21.935366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509591600000,20.474861) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509591660000,25.078249) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509591720000,22.462704) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509591780000,21.0022) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509591840000,25.541695) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509591900000,23.339125) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509591960000,21.273968) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509592020000,25.263077) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509592080000,23.80257) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509592140000,21.801306) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509592200000,21.891174) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509592260000,20.430668) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509592320000,23.815123) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509592380000,22.217022) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509592440000,20.958006) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509592500000,22.691298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509592560000,23.432344) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509592620000,21.834242) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509592680000,23.218636) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509592740000,23.959682) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509592800000,22.499176) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509592860000,24.094872) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509592920000,24.184738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509592980000,25.382843) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509593040000,21.116135) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509593100000,25.518034) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509593160000,20.259079) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509593220000,22.193861) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509593280000,20.182968) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509593340000,20.786417) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509593400000,22.519709) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509593460000,21.260695) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509593520000,25.800188) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509593580000,23.597435) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509593640000,23.136913) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509593700000,21.676409) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509593760000,25.81274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509593820000,24.21464) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509593880000,22.754135) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509593940000,20.13859) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509594000000,24.073618) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509594060000,22.475515) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509594120000,21.01501) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509594180000,24.949854) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509594240000,23.14045) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509594300000,23.09272) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509594360000,21.027563) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509594420000,25.567059) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509594480000,24.106554) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509594540000,25.903738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509594600000,20.094397) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509594660000,24.633892) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509594720000,20.367184) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509594780000,21.172123) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509594840000,25.711617) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509594900000,20.894522) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509594960000,21.635567) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509595020000,21.587837) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509595080000,24.328575) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509595140000,22.86807) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509595200000,23.05873) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509595260000,24.654425) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509595320000,23.395409) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509595380000,24.136456) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509595440000,25.869747) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509595500000,24.271645) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509595560000,24.663792) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509595620000,20.397083) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509595680000,24.936579) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509595740000,24.88885) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509595800000,22.823692) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509595860000,21.01429) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509595920000,25.553783) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509595980000,23.35103) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509596040000,21.890526) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509596100000,25.825554) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509596160000,23.210009) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509596220000,21.611906) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509596280000,20.151402) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509596340000,24.892385) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509596400000,22.827229) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509596460000,22.7795) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509596520000,20.768606) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509596580000,24.70345) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509596640000,23.444433) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509596700000,21.846333) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509596760000,23.579624) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509596820000,23.770283) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509596880000,22.511267) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509596940000,24.106962) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509597000000,24.848007) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509597060000,23.387503) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509597120000,24.682545) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509597180000,20.836367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509597240000,25.375862) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509597300000,21.109154) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509597360000,25.64865) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509597420000,20.453587) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509597480000,21.636492) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509597540000,20.175987) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509597600000,20.917032) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509597660000,22.714216) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509597720000,21.253712) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509597780000,21.44437) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509597840000,23.177662) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509597900000,23.129932) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509597960000,21.870918) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509598020000,25.80576) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509598080000,23.794867) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509598140000,22.196766) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509598200000,25.527142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509598260000,24.066635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509598320000,22.60613) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509598380000,21.00803) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509598440000,24.593973) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509598500000,23.133469) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509598560000,23.223337) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509598620000,21.020582) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509598680000,25.560078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509598740000,23.750675) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509598800000,21.685516) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509598860000,20.087416) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509598920000,24.626911) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509598980000,20.561691) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509599040000,20.75235) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509599100000,25.154247) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509599160000,20.887539) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509599220000,22.636032) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509599280000,22.725899) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509599340000,24.321594) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509599400000,24.512253) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509599460000,23.051748) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509599520000,24.986528) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509599580000,23.388428) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509599640000,24.129473) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509599700000,25.312378) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509599760000,24.053362) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509599820000,24.65681) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509599880000,20.390102) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509599940000,24.929598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509600000000,20.670628) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509600060000,22.467812) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509600120000,21.007307) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509600180000,25.546803) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509600240000,23.481646) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509600300000,21.279076) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509600360000,25.268185) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509600420000,23.203026) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509600480000,21.742521) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509600540000,20.34591) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509600600000,24.885405) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509600660000,22.26986) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509600720000,22.359726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509600780000,20.761625) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509600840000,24.897957) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509600900000,23.437452) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509600960000,21.42656) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509601020000,25.223804) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509601080000,23.96479) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509601140000,22.504286) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509601200000,24.237577) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509601260000,24.841026) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509601320000,23.83758) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509601380000,25.570871) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509601440000,21.86229) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509601500000,20.264189) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509601560000,21.99748) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509601620000,22.389627) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509601680000,20.929123) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509601740000,22.524818) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509601800000,21.064312) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509601860000,22.006847) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509601920000,23.189753) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509601980000,21.59165) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509602040000,22.332697) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509602100000,24.267477) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509602160000,24.357346) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509602220000,22.759243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509602280000,20.143698) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509602340000,24.683193) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509602400000,22.618221) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509602460000,20.415466) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509602520000,24.954962) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509602580000,22.944069) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509602640000,21.080402) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509602700000,25.4823) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509602760000,24.021795) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509602820000,24.111664) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509602880000,21.496117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509602940000,20.099504) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509603000000,24.639) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509603060000,22.573843) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509603120000,21.113338) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509603180000,25.716724) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509603240000,23.101181) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509603300000,21.640676) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509603360000,20.180172) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509603420000,22.783312) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509603480000,23.524357) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509603540000,23.063837) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509603600000,24.79713) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509603660000,25.400578) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509603720000,24.141563) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509603780000,25.874855) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509603840000,20.065514) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509603900000,24.467411) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509603960000,20.402193) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509604020000,24.941689) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509604080000,25.682734) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509604140000,21.278429) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509604200000,25.469025) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509604260000,21.760445) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509604320000,23.493736) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509604380000,21.895634) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509604440000,20.43513) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509604500000,23.215117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509604560000,21.754612) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509604620000,20.15651) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509604680000,24.091352) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509604740000,22.832336) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509604800000,20.821445) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509604860000,24.61869) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509604920000,23.158186) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509604980000,23.248053) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509605040000,21.989037) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509605100000,25.786283) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509605160000,23.77539) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509605220000,22.314886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509605280000,20.451218) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509605340000,24.853115) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509605400000,23.392612) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509605460000,20.777067) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509605520000,20.324007) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509605580000,24.725906) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509605640000,20.459198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509605700000,22.750616) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509605760000,20.739723) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509605820000,22.536907) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509605880000,23.277954) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509605940000,21.81745) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509606000000,23.550741) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509606060000,22.154129) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509606120000,22.344786) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509606180000,24.07808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509606240000,22.617573) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509606300000,23.422512) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509606360000,25.155804) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509606420000,24.695284) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509606480000,25.436329) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509606540000,21.032024) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509606600000,24.967052) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509606660000,23.506548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509606720000,20.891003) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509606780000,25.2929) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509606840000,24.033886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509606900000,21.968727) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509606960000,20.508223) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509607020000,24.910122) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509607080000,22.496065) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509607140000,22.585934) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509607200000,21.125427) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509607260000,25.527327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509607320000,23.46217) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509607380000,21.652765) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509607440000,20.19226) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509607500000,23.989506) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509607560000,22.529001) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509607620000,22.075943) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509607680000,25.460398) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509607740000,23.862297) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509607800000,23.952164) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509607860000,25.685455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509607920000,20.62799) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509607980000,25.029888) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509608040000,20.212793) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509608100000,20.953838) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509608160000,25.694824) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509608220000,21.29052) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509608280000,25.830013) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509608340000,20.020672) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509608400000,21.955454) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509608460000,20.357351) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509608520000,22.64877) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509608580000,24.382061) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509608640000,22.37117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509608700000,22.370152) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509608760000,24.103443) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509608820000,22.642939) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509608880000,21.182434) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509608940000,25.181168) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509609000000,23.170277) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509609060000,21.70977) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509609120000,25.644613) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509609180000,24.248001) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509609240000,24.337868) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509609300000,21.722322) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509609360000,20.261818) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509609420000,24.663717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509609480000,23.404701) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509609540000,21.339544) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509609600000,25.328651) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509609660000,23.730549) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509609720000,22.672838) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509609780000,21.212334) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509609840000,25.75183) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509609900000,21.347525) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509609960000,23.088554) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509610020000,21.829538) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509610080000,23.562832) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509610140000,24.166279) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509610200000,22.705774) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509610260000,24.090168) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509610320000,24.831215) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509610380000,23.233112) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509610440000,24.966404) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509610500000,23.70739) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509610560000,23.898046) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509610620000,25.493742) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509610680000,25.58361) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509610740000,20.324656) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509610800000,21.45348) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509610860000,25.855377) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509610920000,20.046036) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509610980000,21.77933) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509611040000,20.520313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509611100000,24.92221) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509611160000,22.857054) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509611220000,20.84616) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509611280000,25.587147) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509611340000,23.384392) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509611400000,23.474258) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509611460000,22.013754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509611520000,25.398209) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509611580000,24.001596) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509611640000,22.541092) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509611700000,21.080587) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509611760000,25.01543) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509611820000,24.424774) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509611880000,22.413881) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509611940000,20.348724) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509612000000,24.88822) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509612060000,24.84049) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509612120000,20.77527) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509612180000,20.965929) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509612240000,25.505424) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509612300000,21.10112) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509612360000,22.043655) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509612420000,20.58315) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509612480000,21.766054) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509612540000,22.369503) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509612600000,21.110487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509612660000,22.84378) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509612720000,21.383274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509612780000,23.537096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509612840000,24.720001) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509612900000,22.655027) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509612960000,23.396074) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509613020000,24.991768) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509613080000,23.531263) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509613140000,23.923412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509613200000,25.656704) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509613260000,24.058601) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509613320000,22.598097) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509613380000,20.734428) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509613440000,24.723537) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509613500000,24.675808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509613560000,22.61065) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509613620000,21.150145) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509613680000,25.891129) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509613740000,24.293028) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509613800000,21.677483) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509613860000,20.216978) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509613920000,20.659227) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509613980000,24.456472) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509614040000,22.995968) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509614100000,20.985075) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509614160000,25.121407) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509614220000,25.073677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509614280000,23.613173) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509614340000,25.346464) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509614400000,25.537123) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509614460000,24.14051) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509614520000,25.873802) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509614580000,20.61485) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509614640000,25.154343) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509614700000,20.951527) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509614760000,21.142185) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509614820000,25.68168) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509614880000,21.414972) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509614940000,21.367243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509615000000,21.503822) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509615060000,22.686726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509615120000,21.226221) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509615180000,21.82967) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509615240000,23.764452) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509615300000,22.303947) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509615360000,22.494606) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509615420000,24.0903) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509615480000,22.831284) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509615540000,21.370779) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509615600000,25.305622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509615660000,25.257893) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509615720000,23.247002) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509615780000,21.383333) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509615840000,25.922829) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509615900000,24.324726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509615960000,22.864222) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509616020000,21.256123) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509616080000,25.795616) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509616140000,24.197515) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509616200000,22.132359) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509616260000,20.873343) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509616320000,20.412823) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509616380000,24.210068) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509616440000,22.749563) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509616500000,21.289059) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509616560000,23.223839) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509616620000,23.82729) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509616680000,21.816397) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509616740000,23.549688) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509616800000,24.492224) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509616860000,22.894121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509616920000,24.627415) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509616980000,24.818071) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509617040000,24.90794) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509617100000,25.899166) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509617160000,24.438662) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509617220000,25.179708) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509617280000,20.362612) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509617340000,24.966) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509617400000,25.707047) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509617460000,21.440338) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509617520000,25.979832) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509617580000,24.58322) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509617640000,21.967674) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509617700000,20.50717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509617760000,20.597038) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509617820000,24.394283) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509617880000,23.13527) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509617940000,21.124376) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509618000000,25.059217) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509618060000,23.461117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509618120000,23.008057) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509618180000,21.547552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509618240000,24.932007) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509618300000,23.333906) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509618360000,22.07489) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509618420000,20.009733) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509618480000,20.099602) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509618540000,24.5015) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509618600000,21.885954) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509618660000,20.626938) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509618720000,25.166433) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509618780000,20.762129) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509618840000,21.503174) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509618900000,25.693771) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509618960000,21.427063) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509619020000,22.030512) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509619080000,20.570007) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509619140000,21.698832) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509619200000,23.439861) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509619260000,21.84176) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509619320000,23.575052) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509619380000,22.114548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509619440000,23.057083) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509619500000,24.652779) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509619560000,22.641886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509619620000,23.38293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509619680000,25.317713) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509619740000,23.71961) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509619800000,22.259106) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509619860000,25.64356) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509619920000,25.733429) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509619980000,24.336815) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509620040000,22.271658) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509620100000,20.811153) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509620160000,24.80026) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509620220000,23.604954) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509620280000,22.144447) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509620340000,20.683943) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509620400000,25.223438) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509620460000,23.222174) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509620520000,21.21128) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509620580000,21.30115) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509620640000,25.235992) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509620700000,23.63789) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509620760000,22.378874) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509620820000,25.763329) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509620880000,24.302824) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509620940000,22.704723) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509621000000,24.639503) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509621060000,25.38055) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509621120000,23.369658) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509621180000,24.965351) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509621240000,25.10193) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509621300000,25.191797) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509621360000,20.925089) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509621420000,25.326988) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509621480000,25.517647) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509621540000,21.452427) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509621600000,25.991922) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509621660000,20.595371) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509621720000,22.328663) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509621780000,20.51926) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509621840000,21.260307) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509621900000,22.856) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509621960000,21.395496) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509622020000,21.485365) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509622080000,25.071308) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509622140000,23.473206) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509622200000,22.012701) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509622260000,25.947544) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509622320000,25.494486) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509622380000,23.896383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509622440000,21.280838) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509622500000,25.820333) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509622560000,24.561317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509622620000,22.963217) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509622680000,20.89806) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509622740000,20.437538) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509622800000,24.977036) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509622860000,22.975769) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509622920000,21.515265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509622980000,20.05476) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509623040000,23.439215) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509623100000,22.042603) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509623160000,20.582098) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509623220000,22.31539) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509623280000,23.056435) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509623340000,20.853867) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509623400000,22.03677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509623460000,24.328188) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509623520000,22.867683) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509623580000,24.463379) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509623640000,23.204363) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509623700000,23.395021) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509623760000,25.128313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509623820000,23.530212) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509623880000,24.472748) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509623940000,20.20604) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509624000000,24.195147) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509624060000,24.798595) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509624120000,20.733376) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509624180000,20.823244) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509624240000,25.36274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509624300000,23.159985) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509624360000,21.149092) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509624420000,20.696033) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509624480000,24.630877) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509624540000,23.032774) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509624600000,21.57227) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509624660000,25.158215) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509624720000,23.697708) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509624780000,22.099607) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509624840000,22.189474) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509624900000,20.124317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509624960000,24.314915) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509625020000,22.716812) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509625080000,20.651655) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509625140000,25.19115) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509625200000,23.932135) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509625260000,25.52783) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509625320000,25.718487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509625380000,24.257984) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509625440000,25.386806) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509625500000,25.990257) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509625560000,20.080124) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509625620000,21.26303) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509625680000,22.004074) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509625740000,20.607462) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509625800000,22.340754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509625860000,20.880249) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509625920000,21.070908) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509625980000,22.868092) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509626040000,21.407587) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509626100000,22.148632) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509626160000,23.881924) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509626220000,22.485312) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509626280000,24.226341) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509626340000,25.959635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509626400000,24.49913) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509626460000,22.901028) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509626520000,21.843317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509626580000,25.832424) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509626640000,24.37192) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509626700000,22.169165) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509626760000,20.910149) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509626820000,25.449644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509626880000,22.834099) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509626940000,21.235998) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509627000000,21.325865) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509627060000,20.066849) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509627120000,24.001692) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509627180000,22.403591) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509627240000,20.392698) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509627300000,24.52903) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509627360000,23.068525) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509627420000,21.470423) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509627480000,23.203716) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509627540000,22.789906) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509627600000,21.329401) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509627660000,22.925097) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509627720000,25.216515) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509627780000,23.75601) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509627840000,25.140404) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509627900000,25.743853) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509627960000,24.283348) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509628020000,20.01664) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509628080000,24.757624) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509628140000,25.361073) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509628200000,20.543978) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509628260000,25.083473) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509628320000,20.026007) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509628380000,21.621702) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509628440000,21.71157) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509628500000,21.90223) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509628560000,23.63552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509628620000,23.044865) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509628680000,21.58436) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509628740000,25.519203) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509628800000,23.50831) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509628860000,22.111698) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509628920000,20.04654) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509628980000,24.586035) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509629040000,23.12553) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509629100000,23.0778) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509629160000,20.663746) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509629220000,25.20324) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509629280000,23.742735) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509629340000,21.539982) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509629400000,20.280966) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509629460000,24.270073) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509629520000,22.204916) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509629580000,20.606813) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509629640000,24.541842) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509629700000,20.275133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509629760000,20.465792) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509629820000,20.418062) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509629880000,22.151354) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509629940000,23.09389) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509630000000,21.633385) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509630060000,23.22908) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509630120000,23.419739) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509630180000,22.160723) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509630240000,23.894014) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509630300000,22.295914) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509630360000,23.036959) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509630420000,24.421352) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509630480000,22.960848) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509630540000,25.11467) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509630600000,20.84796) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509630660000,25.387455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509630720000,25.690252) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509630780000,21.285948) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509630840000,25.825443) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509630900000,24.364937) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509630960000,22.50127) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509631020000,20.903168) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509631080000,24.892275) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509631140000,22.827118) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509631200000,21.568102) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509631260000,21.520372) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509631320000,20.059868) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509631380000,23.444323) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509631440000,21.983818) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509631500000,20.587206) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509631560000,24.522049) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509631620000,23.061544) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509631680000,21.050652) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509631740000,24.24343) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509631800000,22.782925) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509631860000,21.32242) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509631920000,23.055712) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509631980000,25.209534) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509632040000,23.40013) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509632100000,25.13342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509632160000,25.874468) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509632220000,24.276367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509632280000,20.211147) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509632340000,20.401806) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509632400000,24.9413) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509632460000,20.536995) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509632520000,25.27798) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509632580000,20.019026) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509632640000,21.201931) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509632700000,21.154202) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509632760000,21.895247) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509632820000,24.635984) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509632880000,23.17548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509632940000,21.577377) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509633000000,24.961834) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509633060000,23.702818) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509633120000,22.242313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509633180000,20.039558) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509633240000,24.579054) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509633300000,22.76965) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509633360000,20.704493) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509633420000,20.656763) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509633480000,25.196259) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509633540000,23.735754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509633600000,21.321697) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509633660000,25.723597) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509633720000,24.263092) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509633780000,22.197933) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509633840000,20.132961) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509633900000,24.53486) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509633960000,21.919315) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509634020000,20.45881) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509634080000,20.548677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509634140000,22.345861) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509634200000,23.086908) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509634260000,21.076015) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509634320000,22.809307) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509634380000,23.614246) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509634440000,22.15374) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509634500000,23.887032) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509634560000,24.07769) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509634620000,22.681078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509634680000,24.414371) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509634740000,22.953865) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509634800000,25.245285) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509634860000,20.840979) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509634920000,25.837532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509634980000,20.578579) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509635040000,22.31187) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509635100000,20.713768) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509635160000,25.454754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509635220000,22.839209) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509635280000,21.378702) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509635340000,25.780602) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509635400000,23.916933) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509635460000,22.456429) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509635520000,21.995909) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509635580000,25.793154) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509635640000,24.33265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509635700000,23.073633) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509635760000,21.613129) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509635820000,25.410374) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509635880000,23.399483) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509635940000,21.33451) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509636000000,25.269352) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509636060000,23.671251) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509636120000,22.210747) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509636180000,25.79669) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509636240000,25.886559) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509636300000,24.288456) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509636360000,20.021748) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509636420000,20.762794) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509636480000,24.95339) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509636540000,20.549086) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509636600000,21.29013) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509636660000,25.829628) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509636720000,21.764408) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509636780000,20.166306) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509636840000,20.356964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509636900000,22.090256) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509636960000,22.180124) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509637020000,23.79102) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509637080000,25.524311) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509637140000,23.513418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509637200000,24.254463) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509637260000,20.05165) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509637320000,24.591145) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509637380000,23.130638) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509637440000,20.515093) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509637500000,25.11848) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509637560000,23.657976) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509637620000,21.59282) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509637680000,21.682686) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509637740000,20.084585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509637800000,23.670528) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509637860000,22.210024) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509637920000,20.74952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509637980000,25.151417) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509638040000,22.481792) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509638100000,20.4709) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509638160000,25.010395) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509638220000,22.807642) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509638280000,21.548626) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509638340000,21.638493) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509638400000,25.02295) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509638460000,23.424847) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509638520000,21.964342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509638580000,23.899122) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509638640000,24.64017) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509638700000,23.042067) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509638760000,24.224972) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509638820000,25.167507) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509638880000,23.707) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509638940000,25.302696) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509639000000,23.842192) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509639060000,25.583221) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509639120000,22.32396) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509639180000,20.725859) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509639240000,21.466904) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509639300000,23.200197) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509639360000,21.390793) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509639420000,21.994242) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509639480000,23.727535) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509639540000,22.267029) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509639600000,21.008015) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509639660000,24.80526) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509639720000,22.794367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509639780000,22.884235) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509639840000,20.819077) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509639900000,25.422464) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509639960000,23.96196) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509640020000,21.346415) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509640080000,25.88591) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509640140000,23.68334) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509640200000,22.222836) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509640260000,20.157679) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509640320000,24.146786) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509640380000,22.750174) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509640440000,20.685017) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509640500000,20.774883) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509640560000,25.314379) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509640620000,20.910074) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509640680000,21.302221) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509640740000,25.841717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509640800000,21.575008) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509640860000,22.178457) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509640920000,20.919441) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509640980000,22.102346) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509641040000,22.843391) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509641100000,21.24529) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509641160000,23.986029) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509641220000,24.075895) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509641280000,24.266554) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509641340000,25.86225) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509641400000,24.401745) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509641460000,25.34428) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509641520000,21.077572) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509641580000,25.47947) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509641640000,25.670128) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509641700000,21.60491) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509641760000,20.144403) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509641820000,24.546303) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509641880000,22.481146) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509641940000,22.020626) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509642000000,20.76161) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509642060000,24.558855) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509642120000,23.09835) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509642180000,21.637846) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509642240000,24.417833) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509642300000,22.81973) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509642360000,21.359226) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509642420000,25.898722) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509642480000,24.035053) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509642540000,22.43695) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509642600000,21.976433) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509642660000,25.911274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509642720000,24.45077) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509642780000,23.054157) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509642840000,24.787449) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509642900000,24.978107) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509642960000,23.517603) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509643020000,25.314787) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509643080000,20.055832) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509643140000,24.595327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509643200000,25.778233) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509643260000,21.389128) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509643320000,21.478994) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509643380000,23.212286) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509643440000,21.751781) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509643500000,22.35523) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509643560000,23.739624) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509643620000,22.27912) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509643680000,23.020164) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509643740000,24.61586) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509643800000,23.356844) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509643860000,23.547503) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509643920000,25.280794) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509643980000,23.682693) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509644040000,23.77256) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509644100000,21.908892) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509644160000,25.897999) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509644220000,24.299898) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509644280000,22.234741) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509644340000,20.16977) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509644400000,24.709263) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509644460000,23.111162) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509644520000,20.495617) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509644580000,25.2366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509644640000,23.776096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509644700000,21.573341) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509644760000,21.66321) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509644820000,25.652317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509644880000,23.788649) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509644940000,22.190548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509645000000,20.730043) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509645060000,22.463335) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509645120000,22.855482) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509645180000,21.257381) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509645240000,22.990673) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509645300000,23.731718) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509645360000,23.27866) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509645420000,24.874355) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509645480000,20.615385) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509645540000,25.15488) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509645600000,20.888172) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509645660000,25.49156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509645720000,20.232605) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509645780000,21.41551) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509645840000,25.955006) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509645900000,20.759943) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509645960000,22.493235) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509646020000,21.03273) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509646080000,21.223389) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509646140000,23.020573) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509646200000,23.110441) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509646260000,21.649935) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509646320000,25.584778) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509646380000,23.986677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509646440000,21.371317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509646500000,25.30616) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509646560000,23.845654) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509646620000,22.247553) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509646680000,20.988537) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509646740000,24.372992) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509646800000,22.912487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509646860000,22.864758) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509646920000,20.7996) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509646980000,25.540585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509647040000,23.529694) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509647100000,21.326939) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509647160000,25.866434) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509647220000,24.607418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509647280000,20.34071) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509647340000,20.944159) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509647400000,24.933266) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509647460000,22.569313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509647520000,23.310358) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509647580000,23.262629) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509647640000,24.99592) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509647700000,25.186579) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509647760000,23.927563) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509647820000,25.523258) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509647880000,24.062754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509647940000,24.803799) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509648000000,20.188192) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509648060000,24.590092) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509648120000,25.331137) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509648180000,21.064428) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509648240000,25.805412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509648300000,25.757683) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509648360000,23.14214) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509648420000,21.681633) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509648480000,20.221128) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509648540000,23.413908) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509648600000,21.953402) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509648660000,25.94251) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509648720000,23.877354) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509648780000,22.48074) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509648840000,21.020235) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509648900000,25.55973) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509648960000,22.944185) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509649020000,22.896456) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509649080000,21.63744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509649140000,25.572283) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509649200000,24.111778) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509649260000,22.513678) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509649320000,20.09962) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509649380000,24.639116) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509649440000,23.178612) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509649500000,24.774307) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509649560000,20.522799) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509649620000,24.511906) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509649680000,20.245197) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509649740000,22.39902) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509649800000,20.938515) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509649860000,22.873295) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509649920000,23.063953) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509649980000,21.465853) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509650040000,23.199144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509650100000,21.940128) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509650160000,22.681175) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509650220000,24.276869) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509650280000,22.265976) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509650340000,23.208511) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509650400000,24.941803) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509650460000,24.894073) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509650520000,23.433569) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509650580000,20.818024) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509650640000,24.753052) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509650700000,23.154951) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509650760000,21.089792) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509650820000,25.629288) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509650880000,23.819885) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509650940000,21.61713) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509651000000,20.156626) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509651060000,24.696121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509651120000,24.785988) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509651180000,22.784723) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509651240000,20.77383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509651300000,25.313328) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509651360000,23.248169) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509651420000,21.851557) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509651480000,20.391052) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509651540000,23.775507) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509651600000,22.315002) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509651660000,21.724346) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509651720000,23.457638) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509651780000,24.198685) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509651840000,23.738163) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509651900000,25.333858) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509651960000,20.276394) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509652020000,24.81589) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509652080000,20.549181) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509652140000,24.95108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509652200000,25.343227) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509652260000,21.076519) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509652320000,25.616014) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509652380000,20.219463) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509652440000,22.154243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509652500000,20.143353) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509652560000,22.43477) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509652620000,24.030464) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509652680000,22.56996) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509652740000,20.504988) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509652800000,23.889442) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509652860000,22.291342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509652920000,20.830837) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509652980000,24.967169) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509653040000,23.506664) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509653100000,21.908562) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509653160000,25.293016) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509653220000,24.034) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509653280000,24.123869) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509653340000,22.525766) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509653400000,20.46061) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509653460000,24.449717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509653520000,23.1907) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509653580000,20.987947) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509653640000,25.527443) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509653700000,24.066936) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509653760000,22.45884) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509653820000,20.860737) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509653880000,25.400232) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509653940000,21.133524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509654000000,23.424942) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509654060000,22.02833) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509654120000,23.211233) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509654180000,23.95228) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509654240000,22.491776) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509654300000,24.28896) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509654360000,22.828455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509654420000,23.019112) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509654480000,24.752403) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509654540000,23.355793) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509654600000,24.096838) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509654660000,25.83013) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509654720000,25.36961) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509654780000,25.973059) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509654840000,21.101883) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509654900000,25.641378) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509654960000,24.180874) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509655020000,21.978119) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509655080000,20.168716) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509655140000,24.708212) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509655200000,22.643053) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509655260000,21.044952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509655320000,25.785936) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509655380000,23.170391) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509655440000,23.26026) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509655500000,21.662157) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509655560000,20.201653) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509655620000,24.337984) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509655680000,22.327091) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509655740000,20.72899) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509655800000,24.663834) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509655860000,24.210773) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509655920000,22.750269) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509655980000,24.345964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509656040000,24.536623) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509656100000,24.62649) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509656160000,20.561272) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509656220000,21.16472) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509656280000,25.704216) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509656340000,20.88712) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509656400000,21.829655) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509656460000,20.231552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509656520000,21.964844) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509656580000,20.50434) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509656640000,20.896488) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509656700000,22.492182) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509656760000,21.031677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509656820000,23.323095) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509656880000,25.056389) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509656940000,22.853819) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509657000000,23.044477) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509657060000,24.77777) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509657120000,23.317265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509657180000,21.920652) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509657240000,25.855495) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509657300000,23.844603) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509657360000,22.384096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509657420000,20.382832) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509657480000,24.922327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509657540000,25.012196) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509657600000,22.39665) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509657660000,20.798548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509657720000,25.539532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509657780000,24.079027) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509657840000,22.01387) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509657900000,20.415768) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509657960000,25.412323) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509658020000,23.347164) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509658080000,21.88666) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509658140000,20.288559) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509658200000,22.22334) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509658260000,23.96437) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509658320000,22.503864) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509658380000,24.09956) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509658440000,24.840607) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509658500000,23.58159) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509658560000,24.764494) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509658620000,25.367943) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509658680000,23.907438) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509658740000,25.84222) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509658800000,24.381714) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509658860000,24.985165) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509658920000,20.168068) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509658980000,20.257936) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509659040000,20.394514) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509659100000,21.99021) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509659160000,20.529705) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509659220000,20.720364) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509659280000,22.655144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509659340000,21.057041) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509659400000,25.596539) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509659460000,23.53138) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509659520000,21.721977) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509659580000,20.123875) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509659640000,24.058718) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509659700000,24.148586) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509659760000,22.68808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509659820000,21.291468) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509659880000,24.675922) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509659940000,23.215418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509660000000,21.754913) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509660060000,20.559605) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509660120000,25.0991) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509660180000,23.088207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509660240000,21.02305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509660300000,25.626438) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509660360000,25.716305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509660420000,21.449596) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509660480000,21.640255) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509660540000,20.042154) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509660600000,21.976934) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509660660000,22.717981) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509660720000,21.257477) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509660780000,22.85317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509660840000,23.24532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509660900000,21.784813) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509660960000,23.518105) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509661020000,21.920004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509661080000,24.211422) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509661140000,24.78986) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509661200000,23.329353) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509661260000,23.932804) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509661320000,25.666096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509661380000,24.40708) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509661440000,24.597738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509661500000,20.193432) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509661560000,24.73293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509661620000,23.473911) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509661680000,21.408754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509661740000,25.810654) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509661800000,25.350134) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509661860000,23.284975) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509661920000,22.025959) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509661980000,20.427858) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509662040000,24.967354) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509662100000,22.351809) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509662160000,21.89875) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509662220000,20.300648) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509662280000,24.23549) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509662340000,22.774986) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509662400000,20.965582) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509662460000,24.762829) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509662520000,24.852695) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509662580000,23.39219) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509662640000,25.125483) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509662700000,25.930422) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509662760000,23.919529) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509662820000,25.65282) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509662880000,20.393867) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509662940000,24.997253) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509663000000,20.730547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509663060000,20.921204) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509663120000,25.4607) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509663180000,20.451927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509663240000,20.541794) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509663300000,21.28284) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509663360000,22.465744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509663420000,20.867643) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509663480000,21.810179) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509663540000,23.54347) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509663600000,22.082966) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509663660000,20.484863) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509663720000,24.070808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509663780000,22.610302) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509663840000,21.149797) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509663900000,24.947044) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509663960000,25.036911) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509664020000,23.227509) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509664080000,21.16235) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509664140000,25.564249) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509664200000,24.103745) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509664260000,22.755377) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509664320000,20.139832) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509664380000,24.54173) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509664440000,23.081226) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509664500000,21.217558) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509664560000,25.757053) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509664620000,25.709324) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509664680000,23.093779) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509664740000,21.633274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509664800000,20.374258) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509664860000,21.969954) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509664920000,22.710999) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509664980000,20.700108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509665040000,22.634888) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509665100000,23.238337) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509665160000,21.777832) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509665220000,23.511124) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509665280000,23.097315) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509665340000,23.049585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509665400000,24.782877) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509665460000,23.322372) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509665520000,24.06342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509665580000,25.860603) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509665640000,23.84971) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509665700000,24.590755) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509665760000,20.324047) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509665820000,24.927435) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509665880000,23.46693) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509665940000,20.851385) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509666000000,25.39088) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509666060000,25.343151) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509666120000,23.479485) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509666180000,22.018978) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509666240000,20.008085) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509666300000,23.805332) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509666360000,23.352272) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509666420000,21.891768) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509666480000,20.431263) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509666540000,24.22851) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509666600000,22.419106) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509666660000,20.958601) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509666720000,24.893444) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509666780000,24.845715) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509666840000,23.38521) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509666900000,20.971153) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509666960000,25.510649) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509667020000,23.912548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509667080000,25.64584) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509667140000,20.588375) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509667200000,24.577482) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509667260000,20.173176) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509667320000,20.914223) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509667380000,24.84925) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509667440000,20.582542) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509667500000,20.534813) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509667560000,20.725471) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509667620000,22.458763) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509667680000,21.199747) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509667740000,21.803196) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509667800000,23.536488) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509667860000,21.525597) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509667920000,22.468132) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509667980000,24.063826) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509668040000,22.603321) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509668100000,21.142817) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509668160000,24.72876) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509668220000,24.68103) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509668280000,23.220528) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509668340000,21.155369) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509668400000,25.694864) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509668460000,25.10421) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509668520000,22.488663) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509668580000,21.028158) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509668640000,25.567654) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509668700000,24.171041) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509668760000,22.105885) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509668820000,20.094992) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509668880000,20.18486) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509668940000,23.982105) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509669000000,22.72309) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509669060000,21.262585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509669120000,24.64704) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509669180000,23.048939) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509669240000,21.789923) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509669300000,23.523214) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509669360000,24.26426) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509669420000,22.666159) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509669480000,23.244595) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509669540000,23.985641) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509669600000,24.075508) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509669660000,25.671204) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509669720000,24.2107) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509669780000,24.602846) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509669840000,20.336138) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509669900000,24.738037) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509669960000,25.479082) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509670020000,21.413864) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509670080000,25.402971) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509670140000,20.00642) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509670200000,21.739712) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509670260000,20.480696) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509670320000,20.570564) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509670380000,24.36781) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509670440000,22.356916) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509670500000,20.896412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509670560000,25.838701) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509670620000,24.240599) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509670680000,22.780094) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509670740000,20.164549) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509670800000,24.905533) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509670860000,23.307432) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509670920000,21.846928) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509670980000,25.78177) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509671040000,25.32125) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509671100000,23.924637) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509671160000,21.85948) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509671220000,20.398975) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509671280000,24.93847) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509671340000,20.735655) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509671400000,20.926313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509671460000,25.465809) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509671520000,21.1991) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509671580000,21.198082) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509671640000,25.737576) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509671700000,20.92048) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509671760000,23.211899) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509671820000,21.613798) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509671880000,23.548578) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509671940000,22.088074) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509672000000,22.278732) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509672060000,23.874428) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509672120000,22.615412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509672180000,23.356457) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509672240000,25.089748) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509672300000,23.491648) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509672360000,23.883795) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509672420000,25.617086) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509672480000,25.706955) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509672540000,24.108852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509672600000,22.043695) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509672660000,21.040249) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509672720000,25.579744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509672780000,23.37699) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509672840000,21.916485) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509672900000,20.657469) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509672960000,24.041924) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509673020000,22.443823) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509673080000,20.983318) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509673140000,21.073185) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509673200000,25.209518) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509673260000,23.611416) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509673320000,21.600523) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509673380000,25.535366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509673440000,24.27635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509673500000,22.67825) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509673560000,24.411541) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509673620000,24.6022) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509673680000,22.537226) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509673740000,24.132921) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509673800000,24.873966) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509673860000,24.963835) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509673920000,20.146738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509673980000,20.951677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509674040000,25.491173) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509674100000,21.224464) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509674160000,25.76396) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509674220000,20.568897) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509674280000,21.751802) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509674340000,20.291298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509674400000,21.032343) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509674460000,22.829527) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509674520000,21.369022) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509674580000,23.110054) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509674640000,24.843346) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509674700000,23.245243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509674760000,22.792185) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509674820000,20.727028) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509674880000,24.716135) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509674940000,23.118032) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509675000000,21.254364) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509675060000,25.79386) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509675120000,24.333355) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509675180000,22.735252) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509675240000,20.321198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509675300000,20.411064) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509675360000,24.950562) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509675420000,22.747807) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509675480000,21.287302) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509675540000,25.477898) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509675600000,23.41274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509675660000,21.814638) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509675720000,20.354134) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509675780000,21.482958) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509675840000,21.673616) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509675900000,20.075516) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509675960000,21.808807) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509676020000,24.100225) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509676080000,22.84121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509676140000,24.436905) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509676200000,24.627563) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509676260000,23.167059) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509676320000,25.10184) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509676380000,23.503738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509676440000,24.244783) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509676500000,25.427689) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509676560000,24.168673) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509676620000,24.772121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509676680000,20.505413) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509676740000,20.59528) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509676800000,20.785938) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509676860000,23.38908) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509676920000,21.928576) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509676980000,20.468071) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509677040000,24.402912) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509677100000,23.0063) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509677160000,20.995407) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509677220000,24.93025) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509677280000,23.469746) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509677340000,22.073133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509677400000,22.163) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509677460000,25.547455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509677520000,24.08695) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509677580000,22.48885) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509677640000,20.625181) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509677700000,25.164677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509677760000,23.153784) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509677820000,20.951029) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509677880000,24.886057) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509677940000,23.425552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509678000000,25.158844) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509678060000,25.762293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509678120000,25.301773) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509678180000,21.236553) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509678240000,21.9776) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509678300000,20.3795) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509678360000,22.112791) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509678420000,22.504938) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509678480000,21.044434) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509678540000,22.64013) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509678600000,21.179623) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509678660000,22.122158) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509678720000,23.305063) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509678780000,21.70696) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509678840000,23.998379) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509678900000,25.73167) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509678960000,25.278612) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509679020000,23.680511) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509679080000,21.064966) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509679140000,25.604462) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509679200000,24.345446) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509679260000,22.14269) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509679320000,20.682186) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509679380000,24.671293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509679440000,22.807625) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509679500000,21.209524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509679560000,21.29939) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509679620000,25.838886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509679680000,23.223341) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509679740000,21.826729) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509679800000,20.366224) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509679860000,24.301067) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509679920000,22.84056) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509679980000,20.637993) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509680040000,24.022448) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509680100000,22.561943) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509680160000,21.101439) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509680220000,22.898623) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509680280000,25.19004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509680340000,23.179148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509680400000,24.912441) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509680460000,25.515888) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509680520000,24.256874) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509680580000,25.990166) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509680640000,20.180824) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509680700000,24.582722) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509680760000,20.517504) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509680820000,25.057) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509680880000,25.798044) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509680940000,21.39374) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509681000000,20.933218) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509681060000,22.226868) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509681120000,23.96016) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509681180000,22.362057) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509681240000,20.901552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509681300000,24.487497) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509681360000,23.026993) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509681420000,21.42889) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509681480000,25.363733) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509681540000,24.104717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509681600000,22.093826) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509681660000,25.891071) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509681720000,25.980938) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509681780000,24.520433) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509681840000,23.261417) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509681900000,21.058664) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509681960000,25.047771) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509682020000,23.587267) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509682080000,20.91764) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509682140000,25.31954) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509682200000,23.859035) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509682260000,21.24349) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509682320000,25.984474) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509682380000,25.936745) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509682440000,21.670036) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509682500000,22.411083) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509682560000,20.40019) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509682620000,22.197374) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509682680000,22.938421) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509682740000,21.477917) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509682800000,23.211208) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509682860000,21.814594) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509682920000,22.005253) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509682980000,23.738544) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509683040000,22.278042) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509683100000,24.431862) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509683160000,21.1726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509683220000,25.161707) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509683280000,25.902754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509683340000,21.498447) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509683400000,20.239433) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509683460000,24.778927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509683520000,22.163383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509683580000,20.56528) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509683640000,25.306267) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509683700000,23.241108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509683760000,21.780603) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509683820000,21.732874) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509683880000,25.117329) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509683940000,23.858315) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509684000000,22.397808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509684060000,20.799707) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509684120000,24.73455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509684180000,22.11919) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509684240000,20.658686) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509684300000,24.45593) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509684360000,22.995426) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509684420000,21.73641) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509684480000,25.120865) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509684540000,25.073135) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509684600000,23.61263) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509684660000,25.345922) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509684720000,20.288458) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509684780000,24.690357) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509684840000,25.87326) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509684900000,20.614307) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509684960000,25.355291) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509685020000,20.950985) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509685080000,25.490482) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509685140000,25.681139) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509685200000,22.421877) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509685260000,22.374147) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509685320000,23.115194) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509685380000,24.848486) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509685440000,22.837593) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509685500000,23.642532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509685560000,25.375824) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509685620000,23.915318) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509685680000,22.454815) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509685740000,20.453548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509685800000,24.442656) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509685860000,22.982151) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509685920000,20.916994) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509685980000,20.869265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509686040000,25.610249) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509686100000,22.994705) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509686160000,21.534199) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509686220000,25.936098) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509686280000,23.871124) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509686340000,21.805967) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509686400000,25.795074) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509686460000,24.196974) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509686520000,22.333305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509686580000,20.8728) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509686640000,20.96267) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509686700000,22.558363) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509686760000,22.749022) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509686820000,21.490005) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509686880000,23.223297) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509686940000,23.826748) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509687000000,22.366241) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509687060000,23.750635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509687120000,24.491682) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509687180000,22.89358) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509687240000,24.626871) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509687300000,24.173813) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509687360000,25.914845) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509687420000,21.510538) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509687480000,20.050034) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509687540000,20.79108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509687600000,22.72586) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509687660000,21.12776) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509687720000,21.318417) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509687780000,23.051708) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509687840000,21.792694) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509687900000,20.194592) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509687960000,24.129435) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509688020000,22.118542) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509688080000,22.20841) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509688140000,20.207144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509688200000,24.74664) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509688260000,23.286135) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509688320000,20.67059) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509688380000,24.468021) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509688440000,23.007515) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509688500000,21.54701) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509688560000,25.481853) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509688620000,24.085241) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509688680000,22.074348) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509688740000,20.009192) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509688800000,20.099058) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509688860000,24.500957) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509688920000,20.435738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509688980000,20.626396) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509689040000,25.165892) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509689100000,20.761587) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509689160000,21.704123) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509689220000,20.243618) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509689280000,21.426521) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509689340000,22.02997) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509689400000,21.576912) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509689460000,23.310204) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509689520000,23.40007) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509689580000,24.003521) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509689640000,25.186424) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509689700000,23.927408) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509689760000,24.668455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509689820000,20.264149) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509689880000,24.803644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509689940000,25.195793) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509690000000,20.929085) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509690060000,25.330982) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509690120000,23.870478) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509690180000,22.00681) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509690240000,21.54629) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509690300000,25.948189) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509690360000,23.88303) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509690420000,22.422525) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509690480000,20.357553) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509690540000,24.75945) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509690600000,22.143906) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509690660000,20.683401) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509690720000,25.424385) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509690780000,23.221632) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509690840000,21.761127) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509690900000,21.300606) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509690960000,25.23545) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509691020000,23.838837) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509691080000,22.378332) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509691140000,24.111624) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509691200000,24.302282) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509691260000,22.90567) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509691320000,24.638962) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509691380000,25.380009) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509691440000,23.919502) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509691500000,20.522644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509691560000,20.713303) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509691620000,20.80317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509691680000,22.53646) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509691740000,20.93836) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509691800000,21.880896) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509691860000,23.063799) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509691920000,21.603294) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509691980000,22.206743) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509692040000,24.141525) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509692100000,22.681019) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509692160000,22.871677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509692220000,24.467373) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509692280000,23.208357) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509692340000,23.298225) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509692400000,21.233068) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509692460000,25.634966) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509692520000,23.624073) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509692580000,20.954449) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509692640000,25.493944) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509692700000,23.895842) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509692760000,22.435337) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509692820000,20.021282) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509692880000,24.560776) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509692940000,22.962675) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509693000000,20.897518) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509693060000,20.987385) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509693120000,25.177982) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509693180000,22.975227) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509693240000,21.514723) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509693300000,20.054218) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509693360000,21.988998) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509693420000,22.592447) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509693480000,20.581556) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509693540000,22.314848) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509693600000,24.06334) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509693660000,22.465237) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509693720000,24.19853) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509693780000,25.93956) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509693840000,24.479055) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509693900000,20.27624) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509693960000,24.815735) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509694020000,25.556782) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509694080000,20.739685) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509694140000,25.343073) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509694200000,20.084118) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509694260000,21.81741) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509694320000,20.356905) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509694380000,24.960293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509694440000,22.344748) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509694500000,22.434616) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509694560000,20.974112) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509694620000,24.771357) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509694680000,22.706385) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509694740000,20.695492) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509694800000,24.630335) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509694860000,23.032232) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509694920000,21.773216) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509694980000,20.312712) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509695040000,23.697166) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509695100000,22.099066) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509695160000,22.188932) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509695220000,20.325264) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509695280000,24.86476) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509695340000,23.266659) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509695400000,20.651114) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509695460000,25.392097) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509695520000,23.931593) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509695580000,25.527288) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509695640000,20.268333) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509695700000,25.264887) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509695760000,20.998178) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509695820000,21.601627) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509695880000,21.691496) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509695940000,23.424788) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509696000000,23.816935) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509696060000,22.218834) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509696120000,23.952126) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509696180000,22.491621) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509696240000,23.434156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509696300000,25.02985) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509696360000,23.018959) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509696420000,23.760004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509696480000,25.694786) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509696540000,24.096684) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509696600000,24.18655) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509696660000,21.571007) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509696720000,20.1105) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509696780000,23.907932) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509696840000,21.842775) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509696900000,20.38227) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509696960000,24.371378) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509697020000,22.370111) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509697080000,20.909607) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509697140000,25.449102) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509697200000,23.988598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509697260000,21.987333) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509697320000,21.526814) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509697380000,20.066309) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509697440000,24.00115) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509697500000,22.40305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509697560000,21.144033) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509697620000,24.528488) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509697680000,23.067984) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509697740000,21.469881) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509697800000,23.315311) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509697860000,24.056358) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509697920000,22.045465) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509697980000,23.641161) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509698040000,25.932579) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509698100000,24.673563) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509698160000,20.406855) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509698220000,24.808754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509698280000,24.999413) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509698340000,20.934193) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509698400000,25.473688) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509698460000,20.077137) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509698520000,21.810429) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509698580000,20.001026) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509698640000,20.742071) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509698700000,22.337767) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509698760000,22.427633) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509698820000,20.967129) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509698880000,23.747116) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509698940000,22.149015) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509699000000,20.68851) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509699060000,24.623352) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509699120000,23.364338) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509699180000,21.766235) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509699240000,25.15069) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509699300000,23.690186) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509699360000,22.43117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509699420000,22.38344) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509699480000,20.318283) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509699540000,24.307392) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509699600000,22.846886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509699660000,20.845621) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509699720000,25.385117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509699780000,23.924612) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509699840000,21.309067) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509699900000,20.71841) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509699960000,25.257906) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509700020000,20.991198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509700080000,21.732243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509700140000,21.684515) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509700200000,23.068907) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509700260000,23.809954) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509700320000,22.34945) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509700380000,23.945145) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509700440000,22.686129) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509700500000,22.876787) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509700560000,24.610079) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509700620000,23.011976) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509700680000,23.954512) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509700740000,25.687803) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509700800000,23.67691) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509700860000,25.830732) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509700920000,21.564024) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509700980000,25.499052) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509701040000,24.038548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509701100000,21.835793) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509701160000,25.824902) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509701220000,24.565886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509701280000,22.500729) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509701340000,20.902626) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509701400000,25.442122) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509701460000,23.028065) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509701520000,21.56756) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509701580000,21.51983) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509701640000,20.059326) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509701700000,23.99417) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509701760000,22.184765) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509701820000,20.586664) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509701880000,24.521507) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509701940000,23.061003) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509702000000,22.607943) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509702060000,24.203638) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509702120000,24.394297) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509702180000,22.933792) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509702240000,24.868572) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509702300000,21.022394) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509702360000,25.56189) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509702420000,20.744793) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509702480000,21.48584) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509702540000,20.089226) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509702600000,21.82252) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509702660000,20.362015) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509702720000,20.552673) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509702780000,22.349855) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509702840000,20.88935) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509702900000,21.630398) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509702960000,23.36369) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509703020000,23.31596) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509703080000,22.902151) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509703140000,24.635443) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509703200000,23.174938) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509703260000,21.576836) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509703320000,25.71317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509703380000,23.702276) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509703440000,22.241772) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509703500000,20.039017) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509703560000,24.78) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509703620000,23.319496) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509703680000,20.70395) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509703740000,20.656221) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509703800000,25.195717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509703860000,23.9367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509703920000,21.871544) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509703980000,20.273441) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509704040000,24.26255) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509704100000,23.204838) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509704160000,21.744333) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509704220000,20.146233) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509704280000,21.879524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509704340000,22.271671) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509704400000,22.361538) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509704460000,23.957233) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509704520000,24.69828) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509704580000,23.237774) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509704640000,24.622168) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509704700000,25.225616) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509704760000,23.765112) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509704820000,25.498405) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509704880000,24.239388) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509704940000,24.842838) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509705000000,20.025742) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509705060000,24.565237) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509705120000,20.856655) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509705180000,21.847883) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509705240000,20.387379) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509705300000,20.578037) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509705360000,22.311329) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509705420000,20.914717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509705480000,25.454212) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509705540000,23.389053) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509705600000,21.37816) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509705660000,25.981548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509705720000,23.916391) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509705780000,22.455887) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509705840000,22.545753) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509705900000,20.947653) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509705960000,24.533596) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509706020000,23.073092) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509706080000,21.612587) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509706140000,25.409832) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509706200000,24.956774) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509706260000,22.94588) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509706320000,20.880724) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509706380000,25.282623) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509706440000,24.023607) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509706500000,25.756899) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509706560000,21.497929) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509706620000,25.899828) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509706680000,21.63312) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509706740000,22.575655) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509706800000,21.11515) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509706860000,22.710846) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509706920000,22.901503) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509706980000,21.642487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509707040000,23.375778) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509707100000,21.777678) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509707160000,22.518724) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509707220000,23.09716) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509707280000,23.187027) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509707340000,23.790478) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509707400000,25.52377) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509707460000,24.063263) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509707520000,24.455412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509707580000,20.051105) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509707640000,24.590603) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509707700000,23.130096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509707760000,21.26643) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509707820000,25.668327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509707880000,23.657434) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509707940000,21.592278) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509708000000,21.682144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509708060000,20.285532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509708120000,24.825027) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509708180000,22.209482) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509708240000,20.748978) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509708300000,20.158321) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509708360000,24.093164) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509708420000,22.63266) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509708480000,20.621767) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509708540000,24.620502) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509708600000,23.159998) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509708660000,23.249865) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509708720000,24.983156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509708780000,25.586605) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509708840000,23.777203) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509708900000,25.510494) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509708960000,20.251541) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509709020000,24.653439) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509709080000,20.58822) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509709140000,20.778877) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509709200000,25.318375) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509709260000,20.914068) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509709320000,24.849096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509709380000,21.140514) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509709440000,22.323418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509709500000,20.725317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509709560000,21.466362) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509709620000,23.401144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509709680000,21.94064) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509709740000,20.342537) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509709800000,23.726992) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509709860000,22.467976) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509709920000,21.007473) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509709980000,24.804718) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509710040000,23.344213) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509710100000,22.883694) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509710160000,21.020025) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509710220000,25.421923) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509710280000,23.961418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509710340000,22.500914) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509710400000,20.892815) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509710460000,25.294712) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509710520000,23.834208) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509710580000,21.76905) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509710640000,20.510035) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509710700000,24.911934) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509710760000,22.296389) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509710820000,22.386255) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509710880000,20.92575) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509710940000,22.722935) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509711000000,23.463982) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509711060000,21.453089) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509711120000,23.18638) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509711180000,23.991318) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509711240000,22.530813) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509711300000,24.264105) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509711360000,24.454763) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509711420000,22.252195) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509711480000,23.985487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509711540000,24.075354) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509711600000,24.8164) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509711660000,20.412094) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509711720000,24.602692) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509711780000,25.343739) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509711840000,21.07703) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509711900000,25.478928) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509711960000,24.219913) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509712020000,21.604366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509712080000,20.143862) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509712140000,24.545761) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509712200000,22.682093) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509712260000,22.77196) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509712320000,20.761068) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509712380000,24.558313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509712440000,23.097809) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509712500000,22.644749) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509712560000,21.184244) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509712620000,24.981491) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509712680000,22.970598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509712740000,21.711582) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509712800000,25.646425) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509712860000,24.048325) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509712920000,24.138191) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509712980000,21.522646) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509713040000,20.26363) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509713100000,24.66553) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509713160000,20.39882) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509713220000,21.139866) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509713280000,25.330463) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509713340000,20.926159) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509713400000,21.667204) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509713460000,20.2067) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509713520000,21.335524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509713580000,25.737423) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509713640000,21.478453) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509713700000,23.211744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509713760000,21.75124) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509713820000,22.55618) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509713880000,24.28947) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509713940000,22.278578) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509714000000,23.019623) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509714060000,24.816807) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509714120000,23.356302) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509714180000,21.895798) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509714240000,25.280254) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509714300000,23.88364) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509714360000,23.973509) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509714420000,21.90835) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509714480000,20.447845) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509714540000,24.849745) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509714600000,24.136953) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509714660000,22.676449) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509714720000,21.215942) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509714780000,25.617842) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509714840000,23.754173) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509714900000,21.74328) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509714960000,20.282776) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509715020000,24.08002) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509715080000,24.16989) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509715140000,22.910873) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509715200000,20.295328) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509715260000,24.697227) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509715320000,23.236723) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509715380000,25.171503) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509715440000,25.91255) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509715500000,24.314447) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509715560000,25.497353) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509715620000,25.63393) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509715680000,24.173426) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509715740000,25.76912) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509715800000,25.858988) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509715860000,20.049646) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509715920000,21.984426) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509715980000,20.386326) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509716040000,21.127373) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509716100000,22.860664) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509716160000,21.05126) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509716220000,21.654709) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509716280000,23.388) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509716340000,21.927496) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509716400000,20.66848) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509716460000,24.465727) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509716520000,24.005207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509716580000,22.5447) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509716640000,20.479544) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509716700000,25.88889) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509716760000,24.428383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509716820000,21.81284) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509716880000,20.352333) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509716940000,24.95572) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509717000000,23.495216) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509717060000,21.43006) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509717120000,25.419167) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509717180000,25.371437) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509717240000,23.507769) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509717300000,22.047264) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509717360000,20.58676) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509717420000,22.182455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509717480000,22.574602) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509717540000,21.114098) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509717600000,22.84739) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509717660000,23.450838) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509717720000,21.385866) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509717780000,22.56877) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509717840000,23.309816) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509717900000,23.262087) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509717960000,24.995378) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509718020000,23.736362) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509718080000,23.927021) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509718140000,25.522717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509718200000,24.06221) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509718260000,25.004745) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509718320000,20.738039) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509718380000,25.139936) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509718440000,25.330595) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509718500000,21.265377) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509718560000,25.80487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509718620000,25.757141) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509718680000,23.691984) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509718740000,21.681091) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509718800000,21.228033) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509718860000,25.02528) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509718920000,23.564774) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509718980000,22.104269) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509719040000,25.690214) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509719100000,24.092112) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509719160000,22.631607) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509719220000,21.171103) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509719280000,25.307434) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509719340000,25.259705) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509719400000,23.248812) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509719460000,21.183655) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509719520000,25.72315) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509719580000,24.326538) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509719640000,20.05983) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509719700000,20.250488) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509719760000,24.789984) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509719820000,25.78121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509719880000,20.522257) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509719940000,25.061752) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509720000000,20.244656) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509720060000,22.398478) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509720120000,21.139462) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509720180000,22.872753) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509720240000,21.412249) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509720300000,22.015697) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509720360000,23.400091) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509720420000,21.939587) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509720480000,22.680634) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509720540000,24.276327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509720600000,23.017311) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509720660000,23.20797) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509720720000,24.941261) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509720780000,24.893532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509720840000,23.433027) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509720900000,22.375317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509720960000,20.364424) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509721020000,24.766323) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509721080000,22.701164) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509721140000,21.44215) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509721200000,25.981644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509721260000,24.383543) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509721320000,21.767998) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509721380000,20.508982) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509721440000,20.59885) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509721500000,24.396095) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509721560000,22.93559) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509721620000,20.924698) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509721680000,25.061031) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509721740000,23.462929) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509721800000,22.002424) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509721860000,23.735716) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509721920000,23.321907) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509721980000,21.723804) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509722040000,23.457096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509722100000,24.198143) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509722160000,24.28801) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509722220000,20.085194) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509722280000,20.275852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509722340000,24.815348) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509722400000,20.54864) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509722460000,25.152027) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509722520000,25.893074) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509722580000,21.075977) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509722640000,25.61547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509722700000,20.42041) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509722760000,22.153702) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509722820000,20.693197) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509722880000,22.434229) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509722940000,24.029922) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509723000000,23.576864) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509723060000,22.11636) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509723120000,20.051203) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509723180000,24.4531) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509723240000,22.643698) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509723300000,20.57854) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509723360000,25.118034) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509723420000,23.519934) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509723480000,22.260918) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509723540000,25.645372) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509723600000,25.73524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509723660000,24.137138) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509723720000,22.071981) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509723780000,20.812965) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509723840000,24.802074) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509723900000,22.59932) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509723960000,21.138815) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509724020000,25.073841) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509724080000,20.807133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509724140000,21.410583) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509724200000,25.39969) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509724260000,21.33447) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509724320000,23.625889) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509724380000,22.027788) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509724440000,23.76108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509724500000,23.951738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509724560000,22.692722) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509724620000,24.288418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509724680000,22.827913) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509724740000,23.568958) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509724800000,24.953352) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509724860000,23.355251) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509724920000,24.096296) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509724980000,25.829588) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509725040000,25.919456) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509725100000,25.3288) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509725160000,22.713255) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509725220000,21.25275) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509725280000,25.792246) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509725340000,23.790981) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509725400000,22.330475) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509725460000,20.319584) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509725520000,24.254425) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509725580000,22.857813) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509725640000,21.397308) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509725700000,21.487175) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509725760000,24.871632) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509725820000,23.27353) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509725880000,22.014513) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509725940000,25.949356) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509726000000,24.488852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509726060000,22.890749) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509726120000,25.670738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509726180000,24.210232) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509726240000,22.749727) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509726300000,24.345423) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509726360000,25.287958) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509726420000,24.827438) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509726480000,20.56073) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509726540000,21.164179) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509726600000,25.703674) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509726660000,21.638454) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509726720000,21.829113) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509726780000,20.231012) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509726840000,21.964304) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509726900000,20.705288) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509726960000,21.446333) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509727020000,23.042028) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509727080000,21.031136) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509727140000,23.322556) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509727200000,20.063292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509727260000,24.46519) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509727320000,23.004686) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509727380000,20.389141) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509727440000,25.130125) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509727500000,23.532024) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509727560000,21.466866) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509727620000,20.006361) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509727680000,24.196959) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509727740000,21.994204) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509727800000,20.533699) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509727860000,20.623566) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509727920000,25.163061) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509727980000,23.161797) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509728040000,21.150904) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509728100000,25.6904) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509728160000,23.625242) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509728220000,21.422672) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509728280000,25.962168) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509728340000,23.346622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509728400000,21.886118) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509728460000,20.489506) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509728520000,22.222797) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509728580000,24.514215) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509728640000,22.503323) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509728700000,24.099018) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509728760000,25.041553) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509728820000,23.581049) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509728880000,25.31434) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509728940000,23.71624) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509729000000,24.108387) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509729060000,25.841679) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509729120000,24.381174) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509729180000,24.984623) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509729240000,21.72536) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509729300000,21.26484) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509729360000,22.005886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509729420000,23.601582) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509729480000,22.141075) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509729540000,20.882061) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509729600000,24.266516) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509729660000,22.668413) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509729720000,21.207909) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509729780000,25.344242) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509729840000,23.883736) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509729900000,22.285635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509729960000,25.67009) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509730020000,25.759956) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509730080000,24.500942) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509730140000,22.90284) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509730200000,20.837683) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509730260000,24.82679) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509730320000,22.761818) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509730380000,20.559063) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509730440000,25.098558) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509730500000,23.638054) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509730560000,21.223997) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509730620000,25.625896) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509730680000,25.715763) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509730740000,21.449055) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509730800000,22.190102) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509730860000,20.79349) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509730920000,21.976393) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509730980000,22.71744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509731040000,21.256935) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509731100000,23.05412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509731160000,21.593615) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509731220000,21.784271) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509731280000,23.517565) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509731340000,22.0316) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509731400000,24.323019) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509731460000,20.05631) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509731520000,24.045418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509731580000,24.648867) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509731640000,20.583649) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509731700000,25.123142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509731760000,23.66264) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509731820000,21.459885) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509731880000,25.650482) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509731940000,24.189976) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509732000000,22.124819) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509732060000,20.526718) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509732120000,20.616585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509732180000,24.20253) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509732240000,22.742023) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509732300000,21.143923) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509732360000,25.683418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509732420000,23.013792) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509732480000,21.002901) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509732540000,25.404799) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509732600000,23.339642) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509732660000,22.080626) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509732720000,20.620121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509732780000,22.215816) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509732840000,23.956846) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509732900000,22.496342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509732960000,24.431122) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509733020000,25.034573) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509733080000,23.574066) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509733140000,24.756971) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509733200000,25.699507) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509733260000,24.101404) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509733320000,25.834698) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509733380000,24.374191) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509733440000,25.572296) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509733500000,21.167992) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509733560000,21.257858) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509733620000,21.998905) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509733680000,23.732197) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509733740000,22.335585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509733800000,22.526241) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509733860000,24.259533) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509733920000,22.79903) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509733980000,21.402416) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509734040000,25.33726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509734100000,23.326366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509734160000,21.865862) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509734220000,25.864597) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509734280000,25.954464) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509734340000,24.49396) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509734400000,21.878414) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509734460000,20.280313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509734520000,24.21534) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509734580000,22.754837) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509734640000,20.689678) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509734700000,25.091578) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509734760000,23.282173) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509734820000,21.217016) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509734880000,25.756512) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509734940000,25.708782) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509735000000,21.442074) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509735060000,21.83422) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509735120000,20.373716) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509735180000,21.969412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509735240000,22.710457) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509735300000,21.451443) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509735360000,22.634346) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509735420000,23.237795) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509735480000,21.77729) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509735540000,24.518028) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509735600000,23.057524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509735660000,25.211346) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509735720000,20.394249) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509735780000,24.933744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509735840000,25.87628) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509735900000,21.471975) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509735960000,20.011469) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509736020000,20.202127) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509736080000,22.13691) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509736140000,20.538807) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509736200000,25.078302) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509736260000,23.013145) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509736320000,21.203741) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509736380000,21.156012) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509736440000,25.090855) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509736500000,23.63035) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509736560000,22.169846) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509736620000,25.967278) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509736680000,23.35173) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509736740000,21.891226) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509736800000,20.430721) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509736860000,24.429457) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509736920000,22.968952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509736980000,20.95806) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509737040000,24.892902) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509737100000,24.845173) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509737160000,23.586157) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509737220000,25.319448) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509737280000,25.510107) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509737340000,23.912006) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509737400000,25.846786) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509737460000,20.587833) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509737520000,25.127327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509737580000,20.723022) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509737640000,21.921127) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509737700000,20.460623) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509737760000,22.193914) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509737820000,22.146185) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509737880000,22.88723) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509737940000,24.271624) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509738000000,22.81112) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509738060000,23.414568) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509738120000,25.14786) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509738180000,23.888845) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509738240000,24.079502) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509738300000,25.675198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509738360000,24.214693) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509738420000,22.955677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509738480000,20.89052) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509738540000,20.84279) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509738600000,24.831898) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509738660000,22.76674) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509738720000,20.701769) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509738780000,25.103666) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509738840000,23.643162) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509738900000,21.027617) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509738960000,25.7686) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509739020000,24.1705) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509739080000,22.105343) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509739140000,20.644838) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509739200000,20.184317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509739260000,24.183052) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509739320000,22.722548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509739380000,21.262043) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509739440000,22.995335) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509739500000,23.800274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509739560000,21.789381) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509739620000,23.522673) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509739680000,24.263718) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509739740000,23.673061) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509739800000,25.406355) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509739860000,25.597012) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509739920000,25.68688) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509739980000,21.282576) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509740040000,20.02356) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509740100000,20.764606) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509740160000,21.94751) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509740220000,20.349407) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509740280000,21.291943) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509740340000,23.025234) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509740400000,21.56473) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509740460000,25.966629) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509740520000,23.552572) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509740580000,22.092068) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509740640000,22.181936) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509740700000,25.979181) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509740760000,24.518677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509740820000,21.903316) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509740880000,25.83816) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509740940000,24.240057) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509741000000,22.779552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509741060000,21.520536) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509741120000,24.904991) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509741180000,23.30689) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509741240000,21.846386) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509741300000,25.982718) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509741360000,20.072584) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509741420000,24.474483) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509741480000,21.858938) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509741540000,20.398434) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509741600000,25.139418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509741660000,20.735113) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509741720000,21.476158) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509741780000,25.465267) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509741840000,22.206003) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509741900000,22.809452) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509741960000,21.348948) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509742020000,23.082241) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509742080000,24.82327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509742140000,23.426659) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509742200000,25.15995) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509742260000,23.699446) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509742320000,24.44049) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509742380000,20.237675) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509742440000,24.226784) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509742500000,24.967829) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509742560000,20.70112) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509742620000,25.304508) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509742680000,23.844004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509742740000,21.228458) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509742800000,21.318327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509742860000,25.720224) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509742920000,23.0506) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509742980000,21.590096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509743040000,25.579203) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509743100000,23.376448) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509743160000,22.117432) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509743220000,20.656927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509743280000,25.196423) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509743340000,22.993668) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509743400000,21.184265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509743460000,21.274134) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509743520000,25.208975) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509743580000,23.610874) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509743640000,22.15037) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509743700000,25.736313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509743760000,24.275808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509743820000,22.677708) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509743880000,24.411) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509743940000,20.15949) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509744000000,24.148598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509744060000,25.744293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509744120000,20.485338) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509744180000,20.575207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509744240000,22.509987) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509744300000,20.911886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509744360000,21.102545) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509744420000,22.835836) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509744480000,21.57682) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509744540000,22.18027) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509744600000,23.91356) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509744660000,21.902668) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509744720000,22.845203) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509744780000,24.440899) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509744840000,22.980394) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509744900000,23.070261) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509744960000,20.454716) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509745020000,24.252148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509745080000,22.791643) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509745140000,20.726486) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509745200000,25.26598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509745260000,23.869368) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509745320000,21.253822) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509745380000,25.793318) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509745440000,24.332813) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509745500000,22.936201) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509745560000,20.871044) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509745620000,20.410524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509745680000,24.950018) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509745740000,22.747265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509745800000,21.488249) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509745860000,20.027744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509745920000,23.412199) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509745980000,21.814096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509746040000,21.361038) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509746100000,23.09433) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509746160000,23.835377) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509746220000,22.237274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509746280000,23.621668) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509746340000,25.913086) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509746400000,24.452581) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509746460000,20.048277) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509746520000,24.587772) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509746580000,24.97992) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509746640000,20.713211) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509746700000,25.115108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509746760000,25.856155) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509746820000,21.790936) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509746880000,25.780045) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509746940000,20.383493) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509747000000,22.116785) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509747060000,22.206652) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509747120000,20.14168) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509747180000,23.938925) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509747240000,21.928034) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509747300000,20.46753) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509747360000,24.603859) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509747420000,23.005758) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509747480000,21.545254) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509747540000,24.929708) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509747600000,23.670692) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509747660000,22.072592) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509747720000,22.162458) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509747780000,20.097301) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509747840000,24.086409) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509747900000,22.689796) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509747960000,20.62464) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509748020000,25.164135) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509748080000,23.703629) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509748140000,21.202078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509748200000,21.392736) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509748260000,25.932232) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509748320000,21.665524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509748380000,22.470463) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509748440000,22.56033) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509748500000,23.743233) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509748560000,24.48428) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509748620000,22.886177) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509748680000,24.82096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509748740000,23.360455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509748800000,23.551113) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509748860000,25.146809) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509748920000,23.887793) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509748980000,24.628838) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509749040000,20.36213) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509749100000,24.764029) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509749160000,20.505058) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509749220000,21.633883) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509749280000,20.173378) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509749340000,24.575277) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509749400000,22.510118) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509749460000,20.700716) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509749520000,25.240211) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509749580000,23.037457) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509749640000,21.576952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509749700000,20.317936) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509749760000,23.702393) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509749820000,22.10429) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509749880000,22.194157) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509749940000,20.733652) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509750000000,24.869984) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509750060000,23.271883) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509750120000,21.26099) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509750180000,25.195833) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509750240000,24.742775) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509750300000,23.144672) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509750360000,24.877964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509750420000,25.068623) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509750480000,23.809607) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509750540000,25.405302) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509750600000,21.69672) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509750660000,20.236216) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509750720000,21.419119) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509750780000,22.224058) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509750840000,20.763554) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509750900000,22.496845) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509750960000,21.03634) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509751020000,21.841278) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509751080000,23.024181) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509751140000,21.563679) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509751200000,22.304724) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509751260000,23.295952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509751320000,23.385818) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509751380000,23.576477) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509751440000,25.309769) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509751500000,23.711668) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509751560000,22.452652) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509751620000,20.387493) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509751680000,24.376602) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509751740000,22.7785) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509751800000,20.914831) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509751860000,25.454327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509751920000,23.993822) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509751980000,23.946093) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509752040000,21.330547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509752100000,20.071533) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509752160000,24.611027) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509752220000,22.408274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509752280000,20.94777) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509752340000,25.944323) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509752400000,23.879164) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509752460000,22.281063) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509752520000,20.820559) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509752580000,22.755339) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509752640000,22.945997) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509752700000,22.898268) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509752760000,24.63156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509752820000,25.372606) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509752880000,24.11359) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509752940000,25.709286) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509753000000,25.899944) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509753060000,24.439438) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509753120000,20.37422) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509753180000,24.77612) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509753240000,25.517164) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509753300000,20.700068) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509753360000,24.635096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509753420000,20.788918) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509753480000,22.52221) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509753540000,21.061705) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509753600000,21.252363) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509753660000,23.049547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509753720000,21.589043) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509753780000,20.128536) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509753840000,24.063381) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509753900000,22.666767) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509753960000,20.655874) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509754020000,24.590717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509754080000,23.130213) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509754140000,23.082483) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509754200000,21.823467) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509754260000,25.207924) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509754320000,23.747417) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509754380000,22.149317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509754440000,21.091604) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509754500000,25.6311) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509754560000,23.620207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509754620000,21.417454) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509754680000,20.158438) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509754740000,24.697933) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509754800000,20.431225) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509754860000,22.585047) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509754920000,20.574154) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509754980000,22.508934) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509755040000,23.24998) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509755100000,21.651878) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509755160000,23.38517) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509755220000,23.777319) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509755280000,22.316814) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509755340000,23.912508) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509755400000,22.452003) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509755460000,22.588583) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509755520000,23.771486) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509755580000,23.723757) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509755640000,24.464804) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509755700000,20.198095) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509755760000,24.93908) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509755820000,23.340977) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509755880000,20.725433) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509755940000,25.264927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509756000000,24.005913) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509756060000,21.803158) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509756120000,20.342653) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509756180000,24.33176) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509756240000,22.468092) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509756300000,22.420362) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509756360000,20.959858) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509756420000,25.499353) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509756480000,22.883808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509756540000,22.293152) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509756600000,20.832647) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509756660000,24.76749) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509756720000,23.306986) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509756780000,21.910374) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509756840000,25.294828) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509756900000,23.834324) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509756960000,23.92419) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509757020000,25.519886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509757080000,20.462421) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509757140000,24.451529) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509757200000,20.18482) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509757260000,20.788269) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509757320000,25.529255) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509757380000,21.262547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509757440000,21.453205) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509757500000,25.855103) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509757560000,20.983927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509757620000,25.523422) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509757680000,21.81484) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509757740000,23.410536) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509757800000,21.399643) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509757860000,22.342178) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509757920000,24.07547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509757980000,22.477367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509758040000,21.016863) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509758100000,24.602808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509758160000,23.142303) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509758220000,21.5442) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509758280000,25.479044) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509758340000,24.220028) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509758400000,23.759508) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509758460000,21.556753) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509758520000,20.096249) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509758580000,24.635744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509758640000,24.182686) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509758700000,21.97993) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509758760000,25.96904) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509758820000,24.508533) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509758880000,22.644867) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509758940000,21.046764) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509759000000,25.58626) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509759060000,22.970715) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509759120000,23.060581) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509759180000,21.663969) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509759240000,23.39726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509759300000,24.138308) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509759360000,22.127415) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509759420000,23.924599) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509759480000,24.665646) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509759540000,23.20514) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509759600000,24.93843) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509759660000,22.735863) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509759720000,22.926521) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509759780000,24.659813) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509759840000,24.74968) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509759900000,25.35313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509759960000,21.28791) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509760020000,25.277018) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509760080000,20.018064) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509760140000,21.613758) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509760200000,20.354744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509760260000,24.894238) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509760320000,22.278694) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509760380000,20.680592) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509760440000,25.421577) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509760500000,23.356419) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509760560000,23.446285) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509760620000,21.848185) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509760680000,25.23264) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509760740000,24.779581) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509760800000,23.319077) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509760860000,21.720974) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509760920000,25.655817) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509760980000,23.846413) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509761040000,22.38591) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509761100000,20.183155) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509761160000,24.722649) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509761220000,24.812517) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509761280000,22.39846) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509761340000,20.80036) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509761400000,25.339855) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509761460000,21.073147) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509761520000,22.015682) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509761580000,20.41758) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509761640000,21.600485) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509761700000,22.34153) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509761760000,20.276558) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509761820000,21.872253) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509761880000,20.411749) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509761940000,22.152779) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509762000000,23.88607) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509762060000,22.489458) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509762120000,23.230505) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509762180000,24.963797) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509762240000,22.952904) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509762300000,23.757843) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509762360000,25.491135) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509762420000,24.030628) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509762480000,22.570124) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509762540000,20.56886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509762600000,24.557966) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509762660000,24.647835) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509762720000,22.582676) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509762780000,20.984575) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509762840000,20.531517) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509762900000,23.915972) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509762960000,22.455467) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509763020000,20.857365) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509763080000,25.598349) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509763140000,23.533192) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509763200000,21.522299) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509763260000,25.924198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509763320000,24.06053) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509763380000,24.150396) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509763440000,22.689892) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509763500000,24.285587) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509763560000,24.476246) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509763620000,23.21723) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509763680000,24.950521) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509763740000,25.55397) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509763800000,24.093466) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509763860000,24.671902) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509763920000,25.412949) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509763980000,23.814848) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509764040000,25.54814) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509764100000,25.638006) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509764160000,20.030153) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509764220000,21.625849) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509764280000,20.165344) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509764340000,20.906391) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509764400000,22.841171) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509764460000,21.243069) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509764520000,21.433727) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509764580000,23.167019) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509764640000,21.908005) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509764700000,20.309902) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509764760000,24.244745) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509764820000,23.784225) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509764880000,22.323719) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509764940000,20.233105) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509765000000,24.772598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509765060000,23.312094) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509765120000,20.696548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509765180000,25.299936) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509765240000,23.839432) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509765300000,22.378927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509765360000,20.31377) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509765420000,24.917158) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509765480000,24.456638) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509765540000,22.39148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509765600000,20.930975) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509765660000,25.332874) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509765720000,21.267654) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509765780000,21.458313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509765840000,25.997808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509765900000,21.593502) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509765960000,21.730082) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509766020000,20.269577) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509766080000,21.45248) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509766140000,22.055931) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509766200000,22.145798) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509766260000,24.080578) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509766320000,22.620073) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509766380000,23.223522) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509766440000,24.406425) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509766500000,23.147411) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509766560000,23.888458) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509766620000,25.484152) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509766680000,24.023647) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509766740000,24.415794) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509766800000,20.149086) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509766860000,24.550985) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509766920000,24.640852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509766980000,22.575695) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509767040000,21.572248) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509767100000,25.974148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509767160000,23.908989) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509767220000,22.448484) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509767280000,21.189468) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509767340000,25.591368) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509767400000,22.975822) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509767460000,21.515318) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509767520000,20.256302) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509767580000,24.053547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509767640000,24.143415) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509767700000,22.132523) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509767760000,20.067366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509767820000,24.670753) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509767880000,23.210249) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509767940000,24.94354) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509768000000,25.1342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509768060000,22.93163) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509768120000,24.66492) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509768180000,25.405968) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509768240000,23.945461) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509768300000,25.742645) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509768360000,21.483677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509768420000,20.023172) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509768480000,21.756464) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509768540000,20.158361) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509768600000,21.100897) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509768660000,22.283802) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509768720000,20.823298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509768780000,21.426746) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509768840000,23.361526) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509768900000,21.901022) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509768960000,22.09168) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509769020000,23.687376) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509769080000,23.777243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509769140000,23.324184) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509769200000,21.259027) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509769260000,25.660925) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509769320000,23.650032) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509769380000,21.786366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509769440000,20.32586) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509769500000,24.727758) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509769560000,23.267254) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509769620000,20.853197) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509769680000,25.392693) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509769740000,25.344963) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509769800000,23.279806) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509769860000,21.819302) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509769920000,20.009897) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509769980000,23.807144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509770040000,22.34664) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509770100000,20.886135) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509770160000,22.014957) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509770220000,22.618408) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509770280000,20.607515) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509770340000,22.340807) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509770400000,23.283342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509770460000,23.235613) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509770520000,24.968904) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509770580000,25.159563) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509770640000,23.699059) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509770700000,25.496243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509770760000,24.035738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509770820000,24.776783) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509770880000,25.959686) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509770940000,24.563076) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509771000000,25.304121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509771060000,21.037413) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509771120000,25.576908) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509771180000,25.529179) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509771240000,23.92108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509771300000,22.460575) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509771360000,21.00007) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509771420000,24.797316) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509771480000,23.5383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509771540000,21.527409) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509771600000,25.46225) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509771660000,23.86415) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509771720000,22.605133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509771780000,21.144629) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509771840000,24.529083) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509771900000,24.481354) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509771960000,23.02085) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509772020000,21.15718) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509772080000,25.696676) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509772140000,24.098576) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509772200000,21.48303) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509772260000,25.418056) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509772320000,23.957552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509772380000,25.553247) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509772440000,20.294292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509772500000,24.48489) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509772560000,20.218182) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509772620000,22.372004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509772680000,20.911499) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509772740000,22.64479) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509772800000,23.036938) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509772860000,21.438837) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509772920000,23.172129) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509772980000,21.711622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509773040000,22.65416) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509773100000,24.249853) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509773160000,22.23896) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509773220000,22.980007) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509773280000,25.720745) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509773340000,25.673016) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509773400000,24.212511) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509773460000,21.596966) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509773520000,20.136461) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509773580000,24.73985) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509773640000,22.67469) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509773700000,21.214186) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509773760000,25.203293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509773820000,23.202028) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509773880000,21.741524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509773940000,20.28102) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509774000000,20.370886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509774060000,24.168133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509774120000,22.358728) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509774180000,20.898224) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509774240000,24.833067) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509774300000,23.234964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509774360000,21.169992) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509774420000,24.554447) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509774480000,23.093943) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509774540000,21.495842) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509774600000,23.430622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509774660000,24.171669) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509774720000,23.711147) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509774780000,25.306843) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509774840000,20.04789) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509774900000,24.788874) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509774960000,20.522165) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509775020000,24.924065) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509775080000,25.114721) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509775140000,21.049503) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509775200000,25.588999) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509775260000,20.192448) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509775320000,21.92574) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509775380000,20.922293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509775440000,23.21371) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509775500000,24.809406) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509775560000,23.348902) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509775620000,21.888397) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509775680000,25.47434) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509775740000,23.87624) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509775800000,22.415733) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509775860000,20.350576) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509775920000,25.09156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509775980000,23.49346) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509776040000,20.877914) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509776100000,25.41741) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509776160000,25.507277) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509776220000,24.110664) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509776280000,22.045507) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509776340000,20.034615) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509776400000,24.57411) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509776460000,21.766888) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509776520000,20.306383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509776580000,24.845879) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509776640000,22.230333) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509776700000,20.833721) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509776760000,25.373217) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509776820000,21.106508) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509776880000,23.397926) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509776940000,21.799826) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509777000000,23.184217) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509777060000,23.925264) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509777120000,22.46476) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509777180000,24.060455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509777240000,22.80144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509777300000,22.992096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509777360000,24.72539) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509777420000,23.127287) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509777480000,24.875778) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509777540000,20.60907) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509777600000,20.14855) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509777660000,20.751999) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509777720000,22.48529) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509777780000,21.226276) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509777840000,25.765772) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509777900000,23.563017) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509777960000,21.552124) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509778020000,20.29311) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509778080000,24.227951) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509778140000,22.62985) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509778200000,21.169346) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509778260000,24.75529) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509778320000,24.845158) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509778380000,23.247055) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509778440000,21.78655) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509778500000,25.721394) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509778560000,23.106033) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509778620000,21.50793) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509778680000,25.442774) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509778740000,23.98227) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509778800000,22.723253) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509778860000,24.318949) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509778920000,24.509605) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509778980000,24.599474) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509779040000,20.332766) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509779100000,21.137705) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509779160000,25.6772) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509779220000,20.860104) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509779280000,21.60115) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509779340000,20.204536) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509779400000,21.93783) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509779460000,20.477325) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509779520000,20.667982) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509779580000,23.271124) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509779640000,21.81062) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509779700000,24.102037) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509779760000,25.83533) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509779820000,24.237228) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509779880000,24.629375) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509779940000,20.362667) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509780000000,24.90216) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509780060000,23.30406) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509780120000,21.440392) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509780180000,25.4295) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509780240000,23.968994) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509780300000,21.766241) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509780360000,20.507225) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509780420000,20.597092) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509780480000,23.981548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509780540000,22.383446) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509780600000,20.922941) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509780660000,24.85797) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509780720000,22.79281) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509780780000,21.19471) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509780840000,25.183817) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509780900000,23.320148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509780960000,21.859644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509781020000,20.261543) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509781080000,21.994835) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509781140000,23.735865) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509781200000,22.476849) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509781260000,24.072544) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509781320000,24.813591) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509781380000,23.353085) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509781440000,24.737478) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509781500000,25.340927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509781560000,23.880423) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509781620000,25.613716) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509781680000,20.055964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509781740000,20.659412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509781800000,21.842318) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509781860000,21.932184) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509781920000,22.673231) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509781980000,24.470415) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509782040000,23.00991) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509782100000,23.20057) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509782160000,24.93386) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509782220000,23.537247) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509782280000,22.076742) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509782340000,20.011585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509782400000,24.000694) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509782460000,22.60408) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509782520000,20.538923) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509782580000,20.62879) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509782640000,25.168285) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509782700000,23.570185) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509782760000,20.350172) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509782820000,24.889668) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509782880000,23.429161) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509782940000,21.226408) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509783000000,25.967392) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509783060000,23.9565) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509783120000,21.891342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509783180000,20.29324) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509783240000,20.383108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509783300000,22.31789) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509783360000,22.508547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509783420000,20.910446) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509783480000,22.643738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509783540000,23.586273) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509783600000,22.125769) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509783660000,23.721462) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509783720000,23.91212) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509783780000,23.459063) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509783840000,25.192354) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509783900000,23.594254) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509783960000,25.885672) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509784020000,21.068575) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509784080000,25.809559) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509784140000,20.41301) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509784200000,22.146301) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509784260000,20.685795) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509784320000,21.077944) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509784380000,22.673637) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509784440000,21.213133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509784500000,25.752628) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509784560000,23.88896) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509784620000,22.29086) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509784680000,21.83034) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509784740000,25.76518) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509784800000,24.304676) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509784860000,22.102108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509784920000,20.641603) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509784980000,24.026058) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509785040000,22.565552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509785100000,21.16894) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509785160000,25.103783) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509785220000,23.643278) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509785280000,21.632385) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509785340000,25.63112) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509785400000,25.72099) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509785460000,24.260483) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509785520000,25.993774) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509785580000,20.597225) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509785640000,24.78782) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509785700000,20.521112) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509785760000,21.26216) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509785820000,25.664057) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509785880000,22.404795) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509785940000,22.595453) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509786000000,21.134949) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509786060000,22.730644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509786120000,22.82051) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509786180000,23.763046) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509786240000,24.94595) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509786300000,23.347849) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509786360000,24.088894) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509786420000,20.023676) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509786480000,24.563171) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509786540000,22.965069) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509786600000,20.349524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509786660000,25.090508) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509786720000,23.630003) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509786780000,21.42725) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509786840000,21.517117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509786900000,25.506224) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509786960000,22.8366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509787020000,21.238499) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509787080000,25.777992) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509787140000,24.317488) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509787200000,21.903433) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509787260000,20.30533) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509787320000,24.844826) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509787380000,22.779669) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509787440000,21.520653) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509787500000,21.472923) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509787560000,24.857378) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509787620000,23.396873) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509787680000,21.936369) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509787740000,23.733553) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509787800000,24.474598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509787860000,22.463707) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509787920000,24.196999) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509787980000,25.807894) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509788040000,24.34739) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509788100000,20.08068) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509788160000,20.27134) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509788220000,20.22361) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509788280000,22.15839) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509788340000,20.697886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509788400000,21.438932) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509788460000,23.034626) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509788520000,21.225224) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509788580000,21.96627) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509788640000,23.699562) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509788700000,22.10146) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509788760000,20.842443) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509788820000,24.226898) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509788880000,22.766394) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509788940000,22.718664) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509789000000,20.653507) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509789060000,24.588535) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509789120000,22.577642) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509789180000,20.37489) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509789240000,24.914383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509789300000,23.655369) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509789360000,22.194862) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509789420000,25.99211) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509789480000,23.981216) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509789540000,22.7222) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509789600000,20.657043) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509789660000,20.609314) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509789720000,25.14881) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509789780000,22.533264) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509789840000,21.274248) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509789900000,25.676147) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509789960000,21.40944) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509790020000,22.150486) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509790080000,21.147038) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509790140000,22.742733) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509790200000,23.48378) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509790260000,22.023275) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509790320000,23.958055) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509790380000,23.910326) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509790440000,24.100985) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509790500000,25.834276) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509790560000,24.373772) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509790620000,25.17871) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509790680000,20.912003) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509790740000,24.90111) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509790800000,25.642155) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509790860000,21.439339) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509790920000,25.978834) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509790980000,24.51833) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509791040000,21.902784) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509791100000,21.855055) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509791160000,25.790083) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509791220000,23.724926) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509791280000,22.264421) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509791340000,20.666319) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509791400000,24.252262) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509791460000,22.79176) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509791520000,21.331253) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509791580000,25.733152) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509791640000,23.869484) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509791700000,21.858591) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509791760000,21.94846) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509791820000,25.745705) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509791880000,24.2852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509791940000,23.026184) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509792000000,20.410639) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509792060000,24.812538) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509792120000,23.352032) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509792180000,20.09277) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509792240000,20.833817) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509792300000,25.235714) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509792360000,20.41862) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509792420000,21.361155) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509792480000,21.451021) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509792540000,23.046717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509792600000,21.586212) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509792660000,21.77687) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509792720000,23.71165) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509792780000,22.11355) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509792840000,22.854595) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509792900000,24.587887) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509792960000,22.778484) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509793020000,23.381933) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509793080000,25.115225) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509793140000,23.65472) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509793200000,23.744587) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509793260000,20.937366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509793320000,24.926474) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509793380000,23.46597) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509793440000,21.400812) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509793500000,20.004198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509793560000,24.543694) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509793620000,21.92815) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509793680000,20.467644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509793740000,25.071032) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509793800000,23.610527) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509793860000,21.54537) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509793920000,21.08485) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509793980000,25.486748) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509794040000,23.62308) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509794100000,22.162575) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509794160000,20.70207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509794220000,22.297766) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509794280000,23.495869) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509794340000,22.035364) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509794400000,23.768656) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509794460000,24.372105) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509794520000,23.11309) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509794580000,24.295994) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509794640000,20.587412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509794700000,24.989311) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509794760000,20.722603) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509794820000,25.463587) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509794880000,25.654245) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509794940000,21.24994) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509795000000,25.789436) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509795060000,20.73197) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509795120000,22.465263) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509795180000,20.86716) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509795240000,21.05782) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509795300000,22.186644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509795360000,22.27651) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509795420000,20.67841) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509795480000,24.61325) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509795540000,22.60236) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509795600000,21.343344) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509795660000,25.14059) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509795720000,23.680084) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509795780000,22.21958) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509795840000,25.805523) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509795900000,24.207422) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509795960000,22.746918) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509796020000,22.836784) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509796080000,20.771627) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509796140000,25.375015) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509796200000,23.364122) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509796260000,21.298965) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509796320000,25.83846) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509796380000,25.247805) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509796440000,20.981096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509796500000,21.171755) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509796560000,25.71125) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509796620000,21.508434) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509796680000,22.249481) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509796740000,22.339348) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509796800000,23.522251) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509796860000,24.125702) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509796920000,22.866686) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509796980000,24.599977) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509797040000,23.139473) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509797100000,23.742922) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509797160000,25.127316) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509797220000,23.666811) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509797280000,24.407856) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509797340000,20.003551) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509797400000,23.93858) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509797460000,25.67961) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509797520000,21.4129) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509797580000,25.8148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509797640000,24.354294) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509797700000,22.490627) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509797760000,20.479734) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509797820000,24.881634) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509797880000,22.816475) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509797940000,21.557459) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509798000000,20.096954) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509798060000,24.498854) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509798120000,21.883308) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509798180000,21.973175) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509798240000,20.71416) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509798300000,24.511406) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509798360000,23.050901) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509798420000,21.040009) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509798480000,25.08699) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509798540000,23.488888) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509798600000,22.028383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509798660000,23.761675) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509798720000,24.153822) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509798780000,22.555721) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509798840000,24.289013) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509798900000,20.580431) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509798960000,25.119926) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509799020000,20.91711) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509799080000,21.107769) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509799140000,25.647263) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509799200000,21.380556) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509799260000,25.983944) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509799320000,20.724989) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509799380000,21.907894) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509799440000,20.447388) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509799500000,20.44637) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509799560000,22.17966) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509799620000,22.26953) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509799680000,22.460188) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509799740000,24.055882) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509799800000,22.796867) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509799860000,21.336363) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509799920000,25.271206) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509799980000,23.673103) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509800040000,21.863699) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509800100000,25.798542) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509800160000,24.338037) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509800220000,22.739937) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509800280000,22.829803) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509800340000,20.415749) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509800400000,24.955242) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509800460000,23.357141) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509800520000,21.291985) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509800580000,20.838924) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509800640000,24.828033) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509800700000,22.625278) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509800760000,21.164774) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509800820000,25.905758) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509800880000,21.63905) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509800940000,22.242498) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509801000000,21.781979) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509801060000,23.51527) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509801120000,24.457806) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509801180000,22.859703) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509801240000,24.592995) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509801300000,24.783653) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509801360000,23.52464) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509801420000,25.120335) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509801480000,23.659828) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509801540000,24.400875) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509801600000,24.979311) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509801660000,23.38121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509801720000,25.672628) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509801780000,21.40592) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509801840000,25.945415) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509801900000,24.548801) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509801960000,21.933258) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509802020000,20.472752) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509802080000,25.012249) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509802140000,23.010983) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509802200000,21.550478) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509802260000,25.539585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509802320000,23.474428) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509802380000,22.077816) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509802440000,22.167683) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509802500000,20.707178) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509802560000,24.091633) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509802620000,22.493532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509802680000,22.040474) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509802740000,25.975315) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509802800000,24.51481) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509802860000,22.91671) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509802920000,20.502653) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509802980000,25.042149) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509803040000,23.581644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509803100000,25.177338) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509803160000,21.468758) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509803220000,25.659353) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509803280000,21.392645) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509803340000,21.996094) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509803400000,20.53559) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509803460000,22.470371) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509803520000,22.66103) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509803580000,21.062927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509803640000,22.796219) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509803700000,20.731247) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509803760000,21.472294) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509803820000,23.067987) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509803880000,22.607468) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509803940000,23.348515) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509804000000,25.283295) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509804060000,23.685192) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509804120000,22.224688) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509804180000,25.609142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509804240000,24.350128) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509804300000,22.752026) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509804360000,20.686869) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509804420000,25.226364) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509804480000,23.41696) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509804540000,21.214207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509804600000,21.304073) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509804660000,25.843569) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509804720000,24.383064) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509804780000,23.187756) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509804840000,21.176863) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509804900000,25.716358) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509804960000,23.651201) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509805020000,22.25459) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509805080000,20.794085) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509805140000,24.17854) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509805200000,22.718035) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509805260000,22.670305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509805320000,24.605085) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509805380000,25.346132) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509805440000,23.33524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509805500000,24.930935) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509805560000,25.87347) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509805620000,24.412964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509805680000,20.146257) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509805740000,24.548155) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509805800000,24.134346) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509805860000,25.867638) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509805920000,24.407133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509805980000,20.560955) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509806040000,22.294247) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509806100000,20.484842) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509806160000,21.22589) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509806220000,22.821583) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509806280000,21.361078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509806340000,20.102064) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509806400000,23.486519) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509806460000,21.888416) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509806520000,20.427912) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509806580000,24.564243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509806640000,23.103739) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509806700000,23.05601) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509806760000,20.440464) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509806820000,24.97996) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509806880000,24.526901) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509806940000,22.928799) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509807000000,20.863642) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509807060000,24.852749) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509807120000,23.593735) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509807180000,21.39098) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509807240000,25.930475) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509807300000,24.46997) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509807360000,22.055914) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509807420000,22.008184) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509807480000,20.54768) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509807540000,22.280972) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509807600000,23.022018) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509807660000,21.625404) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509807720000,22.80831) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509807780000,23.549355) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509807840000,22.08885) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509807900000,23.080078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509807960000,21.619574) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509808020000,21.810232) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509808080000,23.543524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509808140000,23.495794) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509808200000,24.43833) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509808260000,20.171621) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509808320000,24.160728) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509808380000,24.764177) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509808440000,20.69896) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509808500000,25.238453) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509808560000,23.777948) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509808620000,21.575195) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509808680000,25.765793) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509808740000,24.305286) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509808800000,22.24013) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509808860000,22.1924) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509808920000,20.731895) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509808980000,25.123796) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509809040000,23.663292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509809100000,22.06519) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509809160000,20.604685) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509809220000,24.741016) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509809280000,22.730125) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509809340000,21.132023) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509809400000,25.066864) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509809460000,23.80785) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509809520000,23.897717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509809580000,25.493412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509809640000,25.68407) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509809700000,24.223566) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509809760000,20.158346) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509809820000,20.761795) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509809880000,25.30129) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509809940000,20.484196) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509810000000,20.620773) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509810060000,25.022673) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509810120000,20.755964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509810180000,25.29546) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509810240000,21.03649) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509810300000,22.833673) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509810360000,21.373169) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509810420000,22.114216) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509810480000,23.847507) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509810540000,22.450893) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509810600000,22.641552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509810660000,24.374844) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509810720000,22.91434) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509810780000,21.517727) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509810840000,25.45257) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509810900000,23.441677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509810960000,23.531544) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509811020000,21.32879) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509811080000,20.875732) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509811140000,25.415226) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509811200000,22.799683) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509811260000,21.20158) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509811320000,25.942564) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509811380000,24.48206) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509811440000,22.416903) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509811500000,20.8188) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509811560000,25.009398) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509811620000,22.94424) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509811680000,23.034107) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509811740000,21.436007) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509811800000,23.169298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509811860000,23.561445) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509811920000,22.10094) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509811980000,23.696636) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509812040000,24.437681) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509812100000,22.37271) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509812160000,23.555613) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509812220000,24.159061) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509812280000,22.698557) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509812340000,24.633339) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509812400000,24.723206) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509812460000,25.326656) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509812520000,20.50956) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509812580000,25.049055) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509812640000,25.99159) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509812700000,21.587284) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509812760000,20.12678) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509812820000,20.317438) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509812880000,22.25222) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509812940000,20.654118) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509813000000,25.193613) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509813060000,23.128456) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509813120000,22.667934) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509813180000,22.07728) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509813240000,20.012123) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509813300000,24.551617) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509813360000,23.091112) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509813420000,21.6945) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509813480000,25.078955) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509813540000,23.61845) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509813600000,22.157946) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509813660000,20.156681) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509813720000,24.696175) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509813780000,24.235655) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509813840000,22.170498) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509813900000,20.572397) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509813960000,25.313381) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509814020000,21.046673) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509814080000,21.237331) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509814140000,25.639229) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509814200000,20.768053) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509814260000,21.5091) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509814320000,20.048595) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509814380000,21.64429) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509814440000,22.036438) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509814500000,22.126305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509814560000,23.859596) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509814620000,22.261496) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509814680000,23.00254) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509814740000,24.386934) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509814800000,22.92643) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509814860000,23.529879) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509814920000,25.26317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509814980000,24.004154) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509815040000,24.194813) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509815100000,25.790508) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509815160000,24.330004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509815220000,24.41987) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509815280000,24.257467) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509815340000,22.659367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509815400000,20.648474) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509815460000,24.583317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509815520000,23.3243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509815580000,21.726198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509815640000,20.265694) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509815700000,23.650148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509815760000,22.391132) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509815820000,20.793032) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509815880000,24.727875) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509815940000,24.817741) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509816000000,22.806849) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509816060000,20.805584) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509816120000,25.34508) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509816180000,23.884575) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509816240000,25.617867) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509816300000,25.616848) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509816360000,23.605955) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509816420000,25.339247) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509816480000,20.080294) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509816540000,24.683681) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509816600000,20.416973) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509816660000,22.158003) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509816720000,20.697498) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509816780000,22.293194) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509816840000,21.034178) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509816900000,21.775225) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509816960000,22.958128) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509817020000,21.360025) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509817080000,22.302563) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509817140000,24.035854) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509817200000,22.575348) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509817260000,20.977247) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509817320000,25.369148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509817380000,25.459015) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509817440000,23.99851) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509817500000,21.795755) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509817560000,20.33525) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509817620000,24.525848) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509817680000,22.460691) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509817740000,20.862589) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509817800000,25.402084) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509817860000,24.143068) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509817920000,21.527523) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509817980000,25.929422) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509818040000,20.019289) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509818100000,23.954132) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509818160000,22.695116) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509818220000,21.097015) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509818280000,24.48147) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509818340000,23.020966) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509818400000,20.955994) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509818460000,22.551687) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509818520000,23.292734) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509818580000,21.281841) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509818640000,23.216621) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509818700000,23.820072) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509818760000,23.909939) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509818820000,25.64323) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509818880000,25.833889) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509818940000,24.437277) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509819000000,20.170568) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509819060000,24.710064) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509819120000,25.451109) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509819180000,21.248293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509819240000,25.2374) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509819300000,25.978447) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509819360000,21.711739) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509819420000,21.121082) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509819480000,21.21095) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509819540000,24.595406) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509819600000,23.134901) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509819660000,21.536798) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509819720000,25.673132) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509819780000,24.212627) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509819840000,22.201735) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509819900000,25.99898) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509819960000,24.739964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509820020000,23.279459) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509820080000,21.818954) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509820140000,25.6162) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509820200000,25.15568) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509820260000,23.896664) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509820320000,21.831507) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509820380000,20.233406) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509820440000,24.7729) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509820500000,21.552889) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509820560000,20.092384) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509820620000,24.494282) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509820680000,20.227573) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509820740000,21.170109) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509820800000,25.159216) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509820860000,20.754911) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509820920000,23.04633) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509820980000,21.585825) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509821040000,23.520605) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509821100000,21.922504) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509821160000,22.113163) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509821220000,23.846455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509821280000,22.587439) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509821340000,23.190887) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509821400000,24.92418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509821460000,22.913288) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509821520000,24.66178) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509821580000,20.257473) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509821640000,20.347342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509821700000,24.886837) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509821760000,22.271292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509821820000,20.87468) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509821880000,25.414175) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509821940000,23.349016) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509822000000,21.888512) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509822060000,20.4919) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509822120000,23.876354) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509822180000,22.41585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509822240000,20.955345) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509822300000,20.907616) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509822360000,25.043947) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509822420000,23.033054) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509822480000,21.57255) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509822540000,25.369797) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509822600000,23.304825) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509822660000,21.844318) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509822720000,25.228773) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509822780000,23.630672) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509822840000,22.371656) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509822900000,24.104948) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509822960000,24.845995) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509823020000,24.798265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509823080000,25.981169) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509823140000,20.923704) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509823200000,25.4632) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509823260000,21.058895) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509823320000,25.598389) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509823380000,25.990538) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509823440000,21.72383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509823500000,20.125727) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509823560000,20.866774) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509823620000,23.607512) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509823680000,21.596619) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509823740000,23.75044) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509823800000,25.483732) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509823860000,24.023228) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509823920000,22.764212) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509823980000,20.561457) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509824040000,24.550564) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509824100000,23.09006) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509824160000,21.22639) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509824220000,25.62829) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509824280000,24.167786) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509824340000,21.55224) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509824400000,20.293224) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509824460000,20.245495) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509824520000,24.78499) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509824580000,22.719833) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509824640000,20.70894) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509824700000,24.50637) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509824760000,22.441214) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509824820000,20.98071) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509824880000,25.520205) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509824940000,21.317389) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509825000000,21.508047) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509825060000,20.047543) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509825120000,21.780834) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509825180000,23.934656) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509825240000,22.67564) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509825300000,23.858543) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509825360000,24.59959) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509825420000,23.001488) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509825480000,24.93627) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509825540000,23.475765) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509825600000,23.666424) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509825660000,25.262117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509825720000,24.80906) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509825780000,25.550106) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509825840000,21.283398) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509825900000,21.235668) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509825960000,21.426327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509826020000,23.361107) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509826080000,21.900602) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509826140000,20.3025) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509826200000,24.237343) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509826260000,22.42794) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509826320000,20.967436) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509826380000,24.76468) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509826440000,23.304176) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509826500000,22.04516) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509826560000,25.429615) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509826620000,25.381886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509826680000,23.921381) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509826740000,22.460876) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509826800000,25.791252) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509826860000,24.19315) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509826920000,22.182257) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509826980000,20.1171) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509827040000,24.858086) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509827100000,23.259983) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509827160000,24.993275) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509827220000,25.183933) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509827280000,25.2738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509827340000,21.070984) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509827400000,21.81203) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509827460000,20.351526) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509827520000,21.53443) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509827580000,22.339369) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509827640000,20.878864) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509827700000,22.612156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509827760000,21.15165) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509827820000,22.762547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509827880000,23.94545) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509827940000,22.484945) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509828000000,24.776363) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509828060000,20.372059) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509828120000,25.113043) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509828180000,25.303701) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509828240000,21.036993) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509828300000,25.438892) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509828360000,24.179874) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509828420000,22.114717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509828480000,20.103827) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509828540000,24.505724) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509828600000,22.642056) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509828660000,21.181551) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509828720000,21.27142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509828780000,25.673317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509828840000,23.057772) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509828900000,20.9928) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509828960000,25.532295) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509829020000,23.32954) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509829080000,21.869036) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509829140000,20.059631) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509829200000,23.994474) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509829260000,22.396374) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509829320000,20.93587) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509829380000,22.87065) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509829440000,24.611681) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509829500000,23.013578) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509829560000,24.74687) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509829620000,25.487915) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509829680000,24.2289) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509829740000,25.824596) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509829800000,20.015253) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509829860000,24.554749) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509829920000,21.295486) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509829980000,25.697386) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509830040000,20.43843) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509830100000,21.621336) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509830160000,21.711203) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509830220000,22.516142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509830280000,24.249434) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509830340000,22.788929) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509830400000,22.979588) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509830460000,24.776772) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509830520000,23.316265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509830580000,21.85576) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509830640000,25.790604) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509830700000,24.393991) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509830760000,22.383099) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509830820000,20.317942) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509830880000,20.407808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509830940000,24.809708) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509831000000,22.744736) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509831060000,20.12919) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509831120000,24.668686) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509831180000,23.070583) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509831240000,21.206915) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509831300000,25.74641) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509831360000,23.735518) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509831420000,21.532764) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509831480000,20.273748) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509831540000,20.363617) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509831600000,22.096909) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509831660000,22.700357) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509831720000,20.689465) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509831780000,22.624245) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509831840000,23.365292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509831900000,21.767189) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509831960000,23.50048) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509832020000,23.803278) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509832080000,22.342773) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509832140000,23.938469) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509832200000,22.477962) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509832260000,24.769382) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509832320000,20.153774) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509832380000,24.555674) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509832440000,25.296719) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509832500000,21.03001) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509832560000,25.770996) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509832620000,24.172894) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509832680000,21.557348) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509832740000,20.096844) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509832800000,24.83783) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509832860000,22.635075) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509832920000,21.17457) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509832980000,20.714048) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509833040000,24.648891) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509833100000,22.446323) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509833160000,20.985819) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509833220000,25.525312) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509833280000,22.909767) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509833340000,21.513155) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509833400000,20.05265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509833460000,23.987494) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509833520000,22.526989) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509833580000,21.130377) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509833640000,24.514832) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509833700000,24.604698) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509833760000,23.144194) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509833820000,24.73989) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509833880000,25.682425) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509833940000,23.671532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509834000000,25.404823) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509834060000,20.008272) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509834120000,25.555214) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509834180000,21.288506) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509834240000,21.479164) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509834300000,25.881062) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509834360000,21.815844) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509834420000,21.90571) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509834480000,22.646757) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509834540000,24.24245) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509834600000,22.23156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509834660000,23.174095) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509834720000,24.907387) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509834780000,23.309284) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509834840000,21.84878) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509834900000,25.434723) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509834960000,23.974218) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509835020000,22.376118) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509835080000,20.31096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509835140000,20.400827) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509835200000,23.785467) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509835260000,21.582714) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509835320000,20.122208) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509835380000,24.661703) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509835440000,23.402689) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509835500000,21.199934) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509835560000,25.189041) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509835620000,23.728537) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509835680000,21.864868) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509835740000,20.266768) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509835800000,20.356634) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509835860000,23.741089) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509835920000,22.280584) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509835980000,20.883972) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509836040000,22.617264) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509836100000,23.35831) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509836160000,21.347418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509836220000,23.950558) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509836280000,24.691605) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509836340000,23.2311) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509836400000,24.964392) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509836460000,23.56778) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509836520000,25.30881) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509836580000,21.0421) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509836640000,25.581596) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509836700000,20.185045) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509836760000,22.119827) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509836820000,20.108934) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509836880000,20.84998) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509836940000,22.445675) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509837000000,21.186659) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509837060000,25.726154) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509837120000,23.11061) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509837180000,21.512508) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509837240000,21.602375) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509837300000,24.93275) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509837360000,23.472246) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509837420000,21.874144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509837480000,25.258598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509837540000,23.999584) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509837600000,22.539078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509837660000,20.940977) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509837720000,24.87582) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509837780000,23.066416) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509837840000,21.605911) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509837900000,25.403156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509837960000,25.493025) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509838020000,24.03252) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509838080000,21.618464) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509838140000,20.020363) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509838200000,24.559856) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509838260000,20.29315) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509838320000,22.041641) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509838380000,20.44354) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509838440000,21.626444) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509838500000,22.36749) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509838560000,21.108475) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509838620000,22.70417) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509838680000,22.794037) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509838740000,22.984695) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509838800000,24.717987) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509838860000,23.321375) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509838920000,24.06242) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509838980000,25.795712) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509839040000,23.78482) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509839100000,24.589758) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509839160000,20.32305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509839220000,24.862545) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509839280000,23.40204) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509839340000,20.594818) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509839400000,20.134298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509839460000,24.673794) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509839520000,22.608637) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509839580000,21.010534) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509839640000,25.751518) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509839700000,23.135975) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509839760000,21.675468) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509839820000,20.077368) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509839880000,24.818352) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509839940000,22.753195) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509840000000,20.742302) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509840060000,20.694572) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509840120000,24.629416) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509840180000,23.3704) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509840240000,21.909895) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509840300000,23.50559) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509840360000,23.696247) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509840420000,23.243189) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509840480000,24.976482) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509840540000,25.57993) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509840600000,24.119427) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509840660000,25.503819) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509840720000,20.244865) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509840780000,20.197136) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509840840000,21.930428) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509840900000,20.469923) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509840960000,20.86207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509841020000,22.457766) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509841080000,20.997261) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509841140000,21.738306) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509841200000,23.673088) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509841260000,22.074986) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509841320000,22.265644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509841380000,23.998936) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509841440000,21.933964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509841500000,21.886234) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509841560000,25.821075) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509841620000,23.810184) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509841680000,22.34968) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509841740000,20.348413) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509841800000,24.887909) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509841860000,23.427404) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509841920000,20.81186) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509841980000,25.415247) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509842040000,23.954742) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509842100000,22.494238) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509842160000,20.429081) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509842220000,20.381351) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509842280000,24.571947) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509842340000,22.50679) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509842400000,21.046286) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509842460000,25.448185) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509842520000,22.188921) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509842580000,22.37958) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509842640000,20.919075) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509842700000,22.51477) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509842760000,23.457306) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509842820000,21.996801) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509842880000,23.179705) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509842940000,25.333527) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509843000000,23.873022) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509843060000,25.807802) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509843120000,24.347298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509843180000,24.950747) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509843240000,20.133652) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509843300000,24.874636) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509843360000,25.61568) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509843420000,21.211376) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509843480000,25.750872) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509843540000,25.337063) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509843600000,21.070354) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509843660000,21.022625) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509843720000,25.562119) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509843780000,23.496964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509843840000,21.68756) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509843900000,20.089457) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509843960000,24.0243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509844020000,22.563795) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509844080000,21.30478) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509844140000,25.706678) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509844200000,23.091133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509844260000,21.630629) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509844320000,21.720495) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509844380000,25.71923) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509844440000,24.258726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509844500000,22.247833) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509844560000,20.182676) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509844620000,25.59202) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509844680000,24.131516) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509844740000,25.864807) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509844800000,20.055466) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509844860000,24.658854) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509844920000,20.392145) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509844980000,21.13319) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509845040000,21.223059) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509845100000,22.818754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509845160000,23.210901) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509845220000,21.750397) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509845280000,23.483688) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509845340000,21.885586) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509845400000,22.828121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509845460000,24.011026) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509845520000,22.550522) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509845580000,23.15397) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509845640000,24.282795) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509845700000,22.82229) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509845760000,24.56332) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509845820000,20.159016) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509845880000,24.69851) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509845940000,23.439495) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509846000000,21.374338) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509846060000,25.776236) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509846120000,23.765343) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509846180000,21.901674) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509846240000,20.44117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509846300000,24.84307) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509846360000,23.382565) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509846420000,20.968508) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509846480000,21.058376) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509846540000,25.460274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509846600000,23.395117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509846660000,21.934612) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509846720000,20.931166) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509846780000,24.72841) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509846840000,23.267906) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509846900000,21.807402) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509846960000,23.742182) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509847020000,24.34563) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509847080000,22.33474) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509847140000,24.068031) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509847200000,20.35945) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509847260000,24.962837) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509847320000,20.696129) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509847380000,20.886787) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509847440000,25.426281) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509847500000,21.223467) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509847560000,25.762962) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509847620000,20.504007) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509847680000,21.68691) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509847740000,25.484343) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509847800000,20.225388) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509847860000,21.958681) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509847920000,22.048548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509847980000,20.450445) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509848040000,24.03639) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509848100000,22.575886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509848160000,21.115381) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509848220000,24.912626) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509848280000,23.65361) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509848340000,21.642717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509848400000,25.57756) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509848460000,23.97946) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509848520000,22.720444) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509848580000,22.81031) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509848640000,20.194765) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509848700000,24.596664) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509848760000,23.13616) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509848820000,22.973755) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509848880000,21.51325) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509848940000,25.91515) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509849000000,23.299604) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509849060000,22.040588) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509849120000,20.580084) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509849180000,22.17578) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509849240000,22.916824) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509849300000,22.456305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509849360000,24.391087) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509849420000,24.994535) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509849480000,23.53403) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509849540000,25.267323) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509849600000,25.65947) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509849660000,24.061367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509849720000,25.794659) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509849780000,24.334156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509849840000,24.470734) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509849900000,20.06643) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509849960000,24.055536) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509850020000,20.346954) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509850080000,22.080246) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509850140000,20.683634) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509850200000,25.22313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509850260000,22.607584) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509850320000,21.14708) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509850380000,25.750465) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509850440000,23.685308) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509850500000,22.224804) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509850560000,20.213911) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509850620000,24.212646) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509850680000,22.752142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509850740000,22.842009) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509850800000,21.381504) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509850860000,25.178751) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509850920000,24.175304) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509850980000,22.7148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509851040000,20.649641) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509851100000,25.05154) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509851160000,23.792524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509851220000,21.17698) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509851280000,25.716475) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509851340000,24.118374) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509851400000,20.053154) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509851460000,22.344572) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509851520000,20.33368) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509851580000,21.929375) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509851640000,22.670422) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509851700000,21.411406) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509851760000,23.144697) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509851820000,21.546595) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509851880000,21.737253) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509851940000,22.866077) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509852000000,21.405573) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509852060000,22.009022) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509852120000,23.742313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509852180000,23.281794) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509852240000,24.224329) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509852300000,25.820024) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509852360000,24.35952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509852420000,22.899014) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509852480000,20.484959) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509852540000,24.886856) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509852600000,23.426352) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509852660000,21.361195) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509852720000,20.102179) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509852780000,24.504078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509852840000,21.888533) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509852900000,21.9784) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509852960000,20.517895) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509853020000,25.927238) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509853080000,23.862082) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509853140000,21.851189) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509853200000,20.390684) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509853260000,24.38942) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509853320000,22.928915) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509853380000,21.46841) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509853440000,24.852865) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509853500000,23.456253) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509853560000,23.54612) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509853620000,25.279411) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509853680000,20.020458) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509853740000,24.422356) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509853800000,25.80675) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509853860000,20.547796) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509853920000,25.087292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509853980000,20.682985) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509854040000,24.618013) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509854100000,24.808672) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509854160000,20.541964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509854220000,24.943863) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509854280000,21.235281) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509854340000,23.170061) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509854400000,21.159168) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509854460000,21.762617) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509854520000,23.49591) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509854580000,22.236895) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509854640000,20.77639) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509854700000,24.573635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509854760000,22.562742) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509854820000,21.303726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509854880000,25.23857) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509854940000,23.640469) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509855000000,23.730335) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509855060000,21.11479) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509855120000,20.661732) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509855180000,25.06363) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509855240000,23.603127) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509855300000,21.537968) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509855360000,25.728565) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509855420000,24.130463) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509855480000,22.065306) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509855540000,20.604801) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509855600000,25.345785) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509855660000,20.94148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509855720000,22.68251) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509855780000,21.222006) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509855840000,22.955297) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509855900000,23.760237) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509855960000,22.299732) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509856020000,23.482635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509856080000,24.223682) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509856140000,22.021112) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509856200000,23.754404) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509856260000,22.2939) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509856320000,22.484558) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509856380000,24.281742) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509856440000,24.371609) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509856500000,25.112656) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509856560000,20.845947) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509856620000,25.247845) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509856680000,25.639994) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509856740000,21.373285) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509856800000,25.91278) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509856860000,24.314678) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509856920000,22.45101) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509856980000,20.440117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509857040000,24.979612) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509857100000,22.77686) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509857160000,22.866726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509857220000,22.413668) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509857280000,25.798122) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509857340000,24.20002) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509857400000,22.739515) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509857460000,21.480501) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509857520000,25.415342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509857580000,23.817242) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509857640000,21.806349) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509857700000,25.94268) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509857760000,24.482176) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509857820000,24.434446) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509857880000,20.167738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509857940000,20.358397) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509858000000,25.09938) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509858060000,20.695076) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509858120000,21.436123) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509858180000,25.975616) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509858240000,20.554054) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509858300000,21.157503) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509858360000,25.696999) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509858420000,21.43029) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509858480000,20.171274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509858540000,22.325096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509858600000,23.508) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509858660000,22.047495) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509858720000,22.788542) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509858780000,24.585726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509858840000,23.125221) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509858900000,23.31588) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509858960000,25.049171) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509859020000,23.652557) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509859080000,22.192053) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509859140000,20.126896) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509859200000,24.116003) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509859260000,24.068274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509859320000,23.010563) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509859380000,21.550058) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509859440000,20.089554) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509859500000,24.491451) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509859560000,22.077396) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509859620000,20.61689) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509859680000,25.156385) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509859740000,22.953632) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509859800000,21.694616) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509859860000,25.683723) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509859920000,23.618567) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509859980000,23.570837) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509860040000,22.110332) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509860100000,24.045113) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509860160000,24.235771) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509860220000,22.637669) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509860280000,24.370962) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509860340000,24.50754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509860400000,23.047035) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509860460000,24.64273) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509860520000,24.83339) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509860580000,23.574373) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509860640000,25.307665) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509860700000,25.259935) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509860760000,20.000982) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509860820000,21.183886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509860880000,25.92487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509860940000,20.52832) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509861000000,22.261612) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509861060000,20.801105) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509861120000,21.193254) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509861180000,22.788948) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509861240000,21.328444) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509861300000,25.867939) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509861360000,24.810226) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509861420000,24.762497) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509861480000,22.751606) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509861540000,20.68645) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509861600000,25.225945) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509861660000,23.82933) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509861720000,22.368826) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509861780000,25.75328) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509861840000,24.292776) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509861900000,22.896164) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509861960000,20.831007) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509862020000,25.370502) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509862080000,24.90998) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509862140000,22.707228) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509862200000,21.448212) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509862260000,25.987707) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509862320000,21.720999) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509862380000,22.324448) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509862440000,25.709087) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509862500000,21.442379) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509862560000,22.183426) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509862620000,20.585323) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509862680000,22.520105) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509862740000,22.710764) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509862800000,22.80063) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509862860000,24.396326) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509862920000,22.935822) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509862980000,23.878357) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509863040000,25.06126) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509863100000,23.46316) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509863160000,24.204205) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509863220000,20.138987) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509863280000,24.678482) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509863340000,23.08038) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509863400000,20.464834) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509863460000,20.011776) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509863520000,20.101643) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509863580000,23.898888) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509863640000,22.438385) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509863700000,20.427492) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509863760000,24.563824) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509863820000,22.965721) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509863880000,21.505217) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509863940000,20.044712) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509864000000,23.630657) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509864060000,22.032555) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509864120000,20.57205) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509864180000,24.506893) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509864240000,24.59676) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509864300000,23.200148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509864360000,20.584602) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509864420000,25.124098) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509864480000,23.663593) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509864540000,24.65482) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509864600000,25.395866) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509864660000,23.384974) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509864720000,25.118265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509864780000,25.923204) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509864840000,24.4627) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509864900000,20.195992) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509864960000,21.937021) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509865020000,20.33892) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509865080000,22.2737) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509865140000,20.813196) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509865200000,21.554241) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509865260000,23.149937) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509865320000,21.340534) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509865380000,22.08158) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509865440000,23.814873) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509865500000,22.21677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509865560000,20.868404) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509865620000,24.252857) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509865680000,24.342726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509865740000,22.744625) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509865800000,20.679466) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509865860000,25.420452) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509865920000,23.40956) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509865980000,21.206804) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509866040000,25.7463) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509866100000,24.487284) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509866160000,23.02678) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509866220000,20.824024) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509866280000,24.813133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509866340000,24.903) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509866400000,23.039331) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509866460000,21.44123) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509866520000,25.980726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509866580000,23.365181) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509866640000,21.300209) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509866700000,25.702106) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509866760000,21.435398) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509866820000,22.176445) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509866880000,20.36704) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509866940000,21.962736) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509867000000,22.703781) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509867060000,22.79365) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509867120000,24.526941) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509867180000,23.13033) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509867240000,23.320988) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509867300000,25.05428) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509867360000,23.593775) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509867420000,24.398712) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509867480000,20.132004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509867540000,24.121113) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509867600000,24.862158) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509867660000,21.465298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509867720000,20.004793) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509867780000,20.094662) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509867840000,23.479116) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509867900000,21.881014) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509867960000,20.622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509868020000,24.556843) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509868080000,23.096336) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509868140000,21.498236) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509868200000,25.084179) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509868260000,23.623674) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509868320000,22.16317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509868380000,20.565067) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509868440000,24.7014) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509868500000,24.24088) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509868560000,22.780375) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509868620000,20.577621) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509868680000,25.117115) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509868740000,23.052143) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509868800000,20.436598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509868860000,24.838497) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509868920000,23.377993) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509868980000,25.312773) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509869040000,20.05382) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509869100000,24.455719) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509869160000,25.638622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509869220000,21.93004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509869280000,20.671024) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509869340000,22.26672) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509869400000,20.806215) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509869460000,20.996874) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509869520000,22.931654) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509869580000,21.333551) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509869640000,22.074598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509869700000,23.80789) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509869760000,22.804443) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509869820000,23.407892) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509869880000,25.141186) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509869940000,25.231052) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509870000000,23.770548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509870060000,21.769283) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509870120000,25.75839) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509870180000,24.297886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509870240000,22.232727) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509870300000,20.836115) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509870360000,25.37561) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509870420000,22.760065) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509870480000,21.29956) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509870540000,25.902948) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509870600000,25.992815) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509870660000,23.927658) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509870720000,21.916765) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509870780000,20.318665) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509870840000,23.64904) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509870900000,22.188534) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509870960000,20.72803) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509871020000,22.323725) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509871080000,22.715872) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509871140000,21.255367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509871200000,22.988659) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509871260000,23.592108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509871320000,23.681976) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509871380000,25.066368) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509871440000,25.807415) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509871500000,24.209312) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509871560000,25.942604) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509871620000,24.68359) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509871680000,24.874249) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509871740000,20.469942) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509871800000,25.009438) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509871860000,20.75793) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509871920000,22.491222) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509871980000,20.89312) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509872040000,22.634151) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509872100000,24.367443) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509872160000,23.108427) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509872220000,21.510326) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509872280000,25.445168) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509872340000,23.434275) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509872400000,22.17526) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509872460000,25.972506) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509872520000,24.512001) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509872580000,23.051497) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509872640000,20.63744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509872700000,25.03934) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509872760000,25.129206) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509872820000,23.668701) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509872880000,21.603544) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509872940000,25.400974) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509873000000,23.390083) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509873060000,21.324924) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509873120000,25.86442) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509873180000,24.467808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509873240000,20.2011) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509873300000,20.391758) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509873360000,24.931253) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509873420000,20.728437) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509873480000,23.019855) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509873540000,21.559351) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509873600000,22.742254) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509873660000,23.345703) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509873720000,22.086689) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509873780000,23.81998) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509873840000,22.359474) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509873900000,22.962925) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509873960000,25.153275) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509874020000,23.69277) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509874080000,24.433815) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509874140000,20.02951) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509874200000,20.119379) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509874260000,20.511526) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509874320000,22.244818) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509874380000,20.646715) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509874440000,25.18621) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509874500000,23.322542) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509874560000,21.311651) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509874620000,25.713549) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509874680000,23.648392) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509874740000,22.389376) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509874800000,20.928871) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509874860000,20.881142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509874920000,24.265596) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509874980000,22.805092) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509875040000,20.74012) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509875100000,24.537365) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509875160000,23.07686) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509875220000,21.065968) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509875280000,25.202301) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509875340000,23.604198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509875400000,22.143694) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509875460000,23.876986) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509875520000,24.269133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509875580000,24.221403) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509875640000,25.954695) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509875700000,20.695742) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509875760000,25.235237) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509875820000,21.032421) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509875880000,21.22308) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509875940000,25.762573) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509876000000,21.495865) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509876060000,20.90521) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509876120000,21.646255) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509876180000,22.82916) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509876240000,21.368656) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509876300000,23.522476) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509876360000,25.457258) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509876420000,23.996754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509876480000,24.187412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509876540000,25.783108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509876600000,24.52409) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509876660000,23.063587) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509876720000,20.998428) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509876780000,25.400328) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509876840000,23.590923) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509876900000,21.525766) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509876960000,20.065262) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509877020000,20.017532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509877080000,24.557028) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509877140000,21.337015) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509877200000,25.87651) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509877260000,24.278408) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509877320000,22.213251) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509877380000,20.954235) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509877440000,24.943344) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509877500000,22.74059) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509877560000,21.280085) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509877620000,20.021069) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509877680000,21.75436) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509877740000,23.908182) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509877800000,21.89729) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509877860000,23.63058) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509877920000,24.573116) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509877980000,22.975014) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509878040000,24.708305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509878100000,24.898964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509878160000,24.445906) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509878220000,20.041601) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509878280000,24.581097) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509878340000,25.322142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509878400000,20.706535) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509878460000,20.658806) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509878520000,21.399853) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509878580000,23.133144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509878640000,21.67264) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509878700000,20.276026) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509878760000,23.66048) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509878820000,22.199978) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509878880000,20.739471) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509878940000,24.738207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509879000000,23.277702) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509879060000,21.26681) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509879120000,25.201653) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509879180000,25.153923) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509879240000,23.088951) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509879300000,21.628445) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509879360000,25.012901) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509879420000,23.414799) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509879480000,22.155783) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509879540000,20.090626) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509879600000,24.630121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509879660000,23.03202) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509879720000,20.617964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509879780000,25.15746) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509879840000,25.247326) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509879900000,20.843021) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509879960000,21.584068) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509880020000,25.774664) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509880080000,21.507956) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509880140000,22.111404) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509880200000,20.6509) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509880260000,23.391638) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509880320000,23.582296) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509880380000,21.984196) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509880440000,23.717487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509880500000,22.458471) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509880560000,24.74989) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509880620000,20.345585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509880680000,24.334692) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509880740000,25.075737) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509880800000,21.010519) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509880860000,25.412416) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509880920000,23.951912) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509880980000,21.336367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509881040000,20.077353) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509881100000,24.47925) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509881160000,22.414093) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509881220000,20.953588) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509881280000,20.493067) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509881340000,23.685846) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509881400000,22.225342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509881460000,20.764835) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509881520000,25.304333) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509881580000,23.303066) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509881640000,21.292173) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509881700000,25.831669) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509881760000,23.766512) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509881820000,22.3699) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509881880000,20.909395) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509881940000,24.29385) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509882000000,24.383717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509882060000,22.785616) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509882120000,24.720396) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509882180000,25.461443) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509882240000,23.45055) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509882300000,25.046246) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509882360000,21.690044) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509882420000,20.22954) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509882480000,21.962831) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509882540000,20.36473) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509882600000,20.756878) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509882660000,22.49017) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509882720000,22.580036) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509882780000,23.183487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509882840000,24.916779) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509882900000,23.107374) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509882960000,23.848421) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509883020000,25.444115) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509883080000,23.98361) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509883140000,22.724594) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509883200000,20.10905) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509883260000,24.510948) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509883320000,23.050444) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509883380000,20.38082) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509883440000,20.470686) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509883500000,24.872585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509883560000,22.257038) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509883620000,20.796535) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509883680000,25.53752) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509883740000,23.939417) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509883800000,21.87426) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509883860000,25.863367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509883920000,24.604351) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509883980000,22.401598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509884040000,20.941093) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509884100000,21.03096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509884160000,24.415415) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509884220000,23.018803) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509884280000,21.558298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509884340000,23.29159) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509884400000,24.032635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509884460000,23.44198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509884520000,24.624886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509884580000,25.36593) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509884640000,23.905426) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509884700000,25.70261) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509884760000,24.242105) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509884820000,25.983135) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509884880000,21.716427) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509884940000,20.118326) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509885000000,21.060862) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509885060000,22.794153) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509885120000,20.78326) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509885180000,21.38671) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509885240000,23.321491) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509885300000,21.860985) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509885360000,20.40048) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509885420000,24.197727) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509885480000,21.582367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509885540000,21.672234) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509885600000,25.607077) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509885660000,24.008976) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509885720000,22.54847) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509885780000,20.134415) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509885840000,24.673908) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509885900000,23.075808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509885960000,21.615303) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509886020000,25.751635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509886080000,23.740742) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509886140000,22.142641) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509886200000,20.077484) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509886260000,20.16735) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509886320000,24.908335) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509886380000,20.50403) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509886440000,20.694689) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509886500000,25.234184) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509886560000,21.974922) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509886620000,22.578371) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509886680000,21.117867) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509886740000,22.30077) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509886800000,23.243305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509886860000,21.645205) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509886920000,23.378496) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509886980000,23.468363) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509887040000,23.659021) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509887100000,25.456205) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509887160000,23.9957) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509887220000,24.736748) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509887280000,20.47004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509887340000,25.073425) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509887400000,25.264084) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509887460000,20.997375) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509887520000,25.536871) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509887580000,23.334303) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509887640000,21.269144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509887700000,20.808624) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509887760000,25.34812) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509887820000,23.145367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509887880000,21.88635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509887940000,20.425844) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509888000000,23.810299) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509888060000,22.212198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509888120000,20.953182) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509888180000,25.492678) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509888240000,23.42752) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509888300000,21.829418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509888360000,21.368898) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509888420000,25.50523) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509888480000,24.044725) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509888540000,22.446625) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509888600000,24.179916) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509888660000,25.378021) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509888720000,23.917515) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509888780000,25.51321) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509888840000,20.254257) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509888900000,24.995241) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509888960000,20.178144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509889020000,20.781593) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509889080000,20.871462) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509889140000,22.604753) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509889200000,21.345737) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509889260000,21.949186) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509889320000,23.132092) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509889380000,21.671587) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509889440000,22.614122) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509889500000,24.209816) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509889560000,22.749311) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509889620000,22.93997) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509889680000,24.068794) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509889740000,22.470692) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509889800000,22.56056) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509889860000,20.495403) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509889920000,24.48451) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509889980000,23.087898) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509890040000,21.022741) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509890100000,25.562237) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509890160000,24.10173) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509890220000,22.705118) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509890280000,20.089573) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509890340000,24.629068) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509890400000,23.168564) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509890460000,21.1673) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509890520000,21.257166) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509890580000,25.246273) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509890640000,23.181116) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509890700000,21.583015) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509890760000,21.129955) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509890820000,22.863247) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509890880000,23.053905) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509890940000,21.455805) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509891000000,23.390585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509891060000,24.131632) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509891120000,22.671127) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509891180000,24.266823) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509891240000,20.007853) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509891300000,24.748837) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509891360000,20.482128) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509891420000,24.884027) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509891480000,25.625072) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509891540000,21.009466) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509891600000,25.548962) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509891660000,20.15241) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509891720000,21.885702) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509891780000,25.82073) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509891840000,20.011389) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509891900000,21.607082) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509891960000,21.69695) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509892020000,20.236446) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509892080000,24.372778) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509892140000,22.774677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509892200000,20.763784) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509892260000,24.698626) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509892320000,23.439611) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509892380000,21.841509) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509892440000,20.381004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509892500000,23.76546) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509892560000,22.506443) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509892620000,22.458714) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509892680000,20.393557) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509892740000,24.933052) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509892800000,22.92216) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509892860000,21.72685) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509892920000,20.266346) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509892980000,24.805841) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509893040000,20.539133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509893100000,21.344072) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509893160000,25.33318) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509893220000,21.066471) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509893280000,21.807518) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509893340000,21.759789) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509893400000,23.694569) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509893460000,23.885227) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509893520000,22.424723) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509893580000,24.020416) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509893640000,22.761402) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509893700000,23.502447) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509893760000,24.685352) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509893820000,23.08725) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509893880000,23.22383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509893940000,24.95712) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509894000000,23.496616) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509894060000,23.448887) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509894120000,20.833342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509894180000,25.574326) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509894240000,24.113821) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509894300000,21.911066) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509894360000,20.450562) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509894420000,24.64116) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509894480000,22.576002) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509894540000,20.9779) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509894600000,25.517395) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509894660000,24.258379) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509894720000,21.642834) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509894780000,21.595104) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509894840000,20.1346) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509894900000,24.069443) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509894960000,23.616385) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509895020000,22.018282) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509895080000,25.402737) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509895140000,23.942232) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509895200000,22.683216) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509895260000,24.278912) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509895320000,25.019958) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509895380000,23.009066) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509895440000,24.943846) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509895500000,21.097668) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509895560000,25.637163) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509895620000,21.370455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509895680000,21.561113) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509895740000,20.164501) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509895800000,21.897793) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509895860000,20.437288) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509895920000,21.178333) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509895980000,22.169561) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509896040000,20.158669) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509896100000,20.899715) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509896160000,22.633007) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509896220000,22.585278) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509896280000,21.326262) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509896340000,24.710716) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509896400000,23.250212) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509896460000,21.65211) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509896520000,25.78844) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509896580000,24.327938) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509896640000,22.317045) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509896700000,20.11429) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509896760000,24.855274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509896820000,23.39477) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509896880000,23.484638) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509896940000,21.281883) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509897000000,25.27099) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509897060000,24.817932) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509897120000,22.752773) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509897180000,21.154673) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509897240000,25.694168) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509897300000,23.280111) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509897360000,21.819607) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509897420000,20.221506) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509897480000,21.954798) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509897540000,22.897333) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509897600000,22.436813) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509897660000,24.032507) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509897720000,24.773554) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509897780000,23.31305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509897840000,25.24783) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509897900000,23.649727) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509897960000,23.840385) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509898020000,25.573677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509898080000,23.508705) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509898140000,24.112156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509898200000,25.845448) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509898260000,23.834555) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509898320000,20.125973) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509898380000,21.923157) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509898440000,20.462652) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509898500000,25.002148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509898560000,22.386602) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509898620000,20.98999) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509898680000,25.529484) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509898740000,23.464327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509898800000,22.003822) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509898860000,20.60721) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509898920000,23.991665) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509898980000,22.53116) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509899040000,22.621029) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509899100000,21.022926) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509899160000,25.069906) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509899220000,23.059013) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509899280000,21.598509) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509899340000,25.395756) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509899400000,24.13674) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509899460000,22.676235) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509899520000,20.06069) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509899580000,24.46259) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509899640000,23.203573) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509899700000,24.936865) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509899760000,21.228283) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509899820000,25.63018) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509899880000,20.813086) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509899940000,21.755621) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509900000000,20.295116) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509900060000,21.89081) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509900120000,20.430305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509900180000,20.016497) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509900240000,21.749788) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509900300000,20.151688) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509900360000,20.892733) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509900420000,22.827515) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509900480000,22.366993) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509900540000,22.970444) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509900600000,24.703735) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509900660000,23.243229) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509900720000,21.984215) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509900780000,25.78146) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509900840000,23.770567) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509900900000,22.310062) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509900960000,20.446394) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509901020000,24.848293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509901080000,23.387789) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509901140000,20.772243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509901200000,20.86211) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509901260000,20.271456) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509901320000,24.810951) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509901380000,22.745792) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509901440000,20.7349) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509901500000,25.338287) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509901560000,23.27313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509901620000,21.812626) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509901680000,20.352121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509901740000,22.149305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509901800000,22.339964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509901860000,22.42983) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509901920000,24.163122) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509901980000,24.766571) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509902040000,23.507557) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509902100000,24.69046) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509902160000,25.431507) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509902220000,23.833405) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509902280000,24.962229) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509902340000,23.501724) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509902400000,23.692383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509902460000,25.288078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509902520000,24.029062) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509902580000,20.32048) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509902640000,22.053772) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509902700000,20.455671) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509902760000,20.646328) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509902820000,22.58111) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509902880000,21.120605) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509902940000,25.522503) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509903000000,23.457346) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509903060000,21.647942) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509903120000,20.187437) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509903180000,23.984684) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509903240000,22.524178) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509903300000,22.614046) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509903360000,21.005947) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509903420000,25.407845) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509903480000,23.94734) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509903540000,22.486835) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509903600000,20.623167) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509903660000,25.025066) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509903720000,23.014174) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509903780000,20.949017) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509903840000,25.69) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509903900000,24.0919) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509903960000,25.825191) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509904020000,21.566221) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509904080000,20.105717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509904140000,21.9029) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509904200000,22.643948) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509904260000,21.183441) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509904320000,22.366346) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509904380000,22.365328) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509904440000,20.904823) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509904500000,22.638115) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509904560000,21.17761) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509904620000,21.982548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509904680000,23.165453) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509904740000,23.25532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509904800000,23.996367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509904860000,25.59206) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509904920000,24.333046) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509904980000,24.523705) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509905040000,20.256996) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509905100000,24.658894) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509905160000,23.399878) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509905220000,21.33472) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509905280000,25.323828) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509905340000,23.725727) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509905400000,22.668015) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509905460000,22.757883) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509905520000,21.297379) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509905580000,25.699276) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509905640000,23.08373) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509905700000,21.824717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509905760000,20.36421) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509905820000,24.161457) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509905880000,22.700953) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509905940000,20.891548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509906000000,24.826391) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509906060000,23.22829) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509906120000,23.318157) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509906180000,25.051449) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509906240000,25.443596) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509906300000,23.845495) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509906360000,25.578787) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509906420000,20.319832) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509906480000,24.25486) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509906540000,25.850555) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509906600000,20.041214) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509906660000,24.580708) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509906720000,20.51549) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509906780000,24.917389) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509906840000,21.208807) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509906900000,22.39171) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509906960000,20.931206) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509907020000,21.736145) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509907080000,23.469437) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509907140000,22.00893) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509907200000,22.199589) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509907260000,23.996773) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509907320000,22.536268) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509907380000,21.075764) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509907440000,25.010607) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509907500000,24.41995) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509907560000,23.95943) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509907620000,21.894274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509907680000,20.43377) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509907740000,24.835667) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509907800000,23.57665) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509907860000,20.961105) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509907920000,25.5006) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509907980000,23.9025) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509908040000,22.038832) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509908100000,20.578327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509908160000,24.567434) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509908220000,22.364681) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509908280000,22.454548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509908340000,21.195532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509908400000,22.928823) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509908460000,23.532272) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509908520000,21.521381) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509908580000,22.650204) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509908640000,23.39125) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509908700000,21.793148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509908760000,23.52644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509908820000,23.918589) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509908880000,22.458084) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509908940000,24.05378) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509909000000,24.143646) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509909060000,24.884693) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509909120000,20.269085) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509909180000,24.670984) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509909240000,25.41203) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509909300000,21.14532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509909360000,25.886307) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509909420000,24.288204) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509909480000,21.672659) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509909540000,20.212154) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509909600000,25.759096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509909660000,23.556341) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509909720000,23.64621) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509909780000,21.635317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509909840000,25.57016) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509909900000,24.173546) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509909960000,22.713041) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509910020000,21.252537) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509910080000,24.636992) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509910140000,23.24038) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509910200000,21.779875) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509910260000,25.714718) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509910320000,24.254213) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509910380000,24.206484) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509910440000,21.792427) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509910500000,20.331923) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509910560000,24.871418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509910620000,20.467113) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509910680000,20.603691) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509910740000,24.592798) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509910800000,20.32609) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509910860000,20.929539) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509910920000,25.670525) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509910980000,21.403816) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509911040000,21.594475) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509911100000,21.546745) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509911160000,23.280037) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509911220000,22.02102) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509911280000,22.762068) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509911340000,24.357761) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509911400000,22.34687) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509911460000,23.289404) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509911520000,25.022697) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509911580000,23.424595) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509911640000,21.96409) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509911700000,20.355991) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509911760000,24.895487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509911820000,24.847757) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509911880000,22.7826) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509911940000,21.322094) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509912000000,25.512691) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509912060000,23.309937) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509912120000,21.849432) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509912180000,20.388927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509912240000,25.129913) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509912300000,22.927158) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509912360000,20.916265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509912420000,25.455761) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509912480000,23.592093) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509912540000,23.544363) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509912600000,22.083858) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509912660000,25.468313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509912720000,24.007809) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509912780000,21.805239) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509912840000,23.53853) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509912900000,24.279577) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509912960000,22.268684) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509913020000,24.065868) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509913080000,24.806915) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509913140000,23.346409) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509913200000,25.0797) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509913260000,25.031971) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509913320000,25.42412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509913380000,21.157412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509913440000,25.696907) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509913500000,20.300356) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509913560000,22.235138) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509913620000,20.224245) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509913680000,20.96529) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509913740000,22.560986) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509913800000,22.107927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509913860000,20.647423) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509913920000,24.031878) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509913980000,23.984146) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509914040000,22.523643) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509914100000,20.659975) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509914160000,25.19947) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509914220000,23.601368) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509914280000,20.985823) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509914340000,25.726807) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509914400000,24.266302) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509914460000,22.668201) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509914520000,20.603043) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509914580000,24.79364) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509914640000,24.883507) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509914700000,22.680754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509914760000,21.22025) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509914820000,25.759743) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509914880000,22.53973) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509914940000,20.94163) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509915000000,25.481125) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509915060000,21.214417) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509915120000,22.156952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509915180000,20.558851) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509915240000,21.741755) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509915300000,22.4828) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509915360000,22.572668) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509915420000,24.369852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509915480000,22.909348) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509915540000,23.100006) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509915600000,24.833298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509915660000,23.436684) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509915720000,24.17773) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509915780000,25.911022) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509915840000,23.900131) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509915900000,20.406334) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509915960000,22.139626) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509916020000,20.679121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509916080000,20.768988) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509916140000,24.566235) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509916200000,22.75683) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509916260000,21.296326) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509916320000,25.231167) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509916380000,23.633066) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509916440000,22.37405) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509916500000,25.758507) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509916560000,24.298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509916620000,22.6999) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509916680000,21.440884) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509916740000,25.375727) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509916800000,24.915207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509916860000,23.317104) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509916920000,21.251947) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509916980000,25.186975) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509917040000,23.72647) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509917100000,25.322165) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509917160000,25.512823) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509917220000,24.253807) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509917280000,25.987099) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509917340000,20.590548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509917400000,25.130043) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509917460000,20.514437) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509917520000,22.805855) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509917580000,21.207754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509917640000,22.941046) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509917700000,21.480541) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509917760000,21.872688) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509917820000,23.468384) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509917880000,22.007877) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509917940000,22.748924) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509918000000,25.489662) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509918060000,23.89156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509918120000,24.082218) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509918180000,25.81551) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509918240000,25.905378) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509918300000,24.508766) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509918360000,22.443607) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509918420000,20.432716) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509918480000,24.97221) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509918540000,22.970945) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509918600000,21.51044) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509918660000,20.049936) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509918720000,23.434391) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509918780000,22.037779) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509918840000,20.577274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509918900000,20.667141) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509918960000,24.601984) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509919020000,23.003883) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509919080000,20.388523) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509919140000,24.323364) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509919200000,22.86286) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509919260000,21.26476) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509919320000,23.19954) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509919380000,23.390198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509919440000,21.929693) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509919500000,23.525389) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509919560000,24.467924) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509919620000,24.55779) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509919680000,25.740696) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509919740000,20.344145) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509919800000,24.88364) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509919860000,20.81842) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509919920000,25.357916) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509919980000,25.961365) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509920040000,21.144268) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509920100000,20.69121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509920160000,21.432257) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509920220000,23.02795) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509920280000,21.567446) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509920340000,23.308477) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509920400000,25.243258) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509920460000,23.645157) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509920520000,22.18465) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509920580000,20.119493) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509920640000,24.310091) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509920700000,22.711988) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509920760000,20.646832) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509920820000,25.186327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509920880000,23.92731) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509920940000,22.32921) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509921000000,25.713665) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509921060000,25.803532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509921120000,24.343027) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509921180000,21.535805) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509921240000,20.0753) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509921300000,24.064407) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509921360000,21.99925) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509921420000,20.602638) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509921480000,25.142134) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509921540000,20.875425) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509921600000,21.066084) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509921660000,25.669472) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509921720000,21.402763) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509921780000,23.694181) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509921840000,22.233677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509921900000,23.829372) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509921960000,24.22152) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509922020000,22.761015) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509922080000,24.494307) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509922140000,22.896204) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509922200000,24.644697) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509922260000,25.8276) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509922320000,24.367096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509922380000,24.970545) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509922440000,20.905327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509922500000,20.995193) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509922560000,21.185852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509922620000,22.781548) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509922680000,21.321041) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509922740000,20.062027) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509922800000,23.996868) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509922860000,22.398767) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509922920000,20.387875) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509922980000,24.524206) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509923040000,23.063702) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509923100000,21.465601) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509923160000,21.555468) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509923220000,24.939922) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509923280000,22.87495) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509923340000,21.276848) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509923400000,25.211693) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509923460000,23.751186) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509923520000,21.941784) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509923580000,25.739029) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509923640000,24.278524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509923700000,22.81802) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509923760000,24.7528) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509923820000,25.35625) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509923880000,24.89573) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509923940000,20.62902) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509924000000,21.370068) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509924060000,25.973455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509924120000,21.706747) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509924180000,21.897406) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509924240000,20.436901) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509924300000,23.040041) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509924360000,21.579536) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509924420000,22.320583) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509924480000,23.503487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509924540000,22.106874) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509924600000,24.398293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509924660000,20.131584) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509924720000,24.67108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509924780000,23.072977) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509924840000,20.658922) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509924900000,25.198418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509924960000,23.737911) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509925020000,21.535158) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509925080000,20.276142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509925140000,24.26525) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509925200000,22.200092) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509925260000,20.601992) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509925320000,20.691858) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509925380000,24.626886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509925440000,22.011341) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509925500000,20.413239) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509925560000,24.952736) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509925620000,23.089066) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509925680000,21.628561) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509925740000,20.03046) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509925800000,23.414915) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509925860000,22.1559) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509925920000,20.695395) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509925980000,22.29109) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509926040000,24.582508) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509926100000,22.571615) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509926160000,24.506397) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509926220000,25.109846) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509926280000,23.649342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509926340000,25.382633) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509926400000,20.580736) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509926460000,24.982635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509926520000,20.715927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509926580000,25.255423) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509926640000,20.197958) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509926700000,21.793652) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509926760000,21.333132) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509926820000,22.074179) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509926880000,23.80747) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509926940000,22.410858) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509927000000,20.950354) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509927060000,24.334808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509927120000,22.874302) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509927180000,21.47769) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509927240000,25.412533) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509927300000,23.952028) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509927360000,21.941135) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509927420000,25.133915) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509927480000,25.223782) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509927540000,23.763277) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509927600000,22.302773) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509927660000,20.100018) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509927720000,24.290615) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509927780000,22.830109) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509927840000,20.764952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509927900000,25.166851) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509927960000,23.907835) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509928020000,21.29229) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509928080000,25.831785) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509928140000,25.784056) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509928200000,21.517347) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509928260000,22.459883) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509928320000,20.44899) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509928380000,22.044685) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509928440000,22.785732) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509928500000,22.332672) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509928560000,24.065964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509928620000,22.467863) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509928680000,22.65852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509928740000,24.593302) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509928800000,23.132797) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509928860000,25.28662) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509928920000,21.01991) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509928980000,25.009018) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509929040000,25.951553) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509929100000,21.547249) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509929160000,20.086742) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509929220000,24.626238) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509929280000,22.212183) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509929340000,20.61408) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509929400000,25.153576) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509929460000,23.088419) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509929520000,21.023447) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509929580000,20.975718) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509929640000,24.360172) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509929700000,22.899668) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509929760000,21.439163) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509929820000,20.04255) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509929880000,23.977392) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509929940000,21.9665) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509930000000,20.505995) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509930060000,24.50473) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509930120000,23.044226) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509930180000,21.583721) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509930240000,24.968176) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509930300000,24.920446) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509930360000,23.66143) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509930420000,25.394722) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509930480000,20.135769) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509930540000,24.537666) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509930600000,20.728018) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509930660000,21.469063) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509930720000,20.008558) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509930780000,21.604254) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509930840000,20.345238) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509930900000,20.535896) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509930960000,22.269188) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509931020000,22.221458) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509931080000,22.962505) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509931140000,24.897285) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509931200000,22.886393) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509931260000,23.489841) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509931320000,25.223133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509931380000,23.964119) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509931440000,22.503613) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509931500000,20.30086) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509931560000,24.289967) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509931620000,22.224995) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509931680000,20.159838) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509931740000,20.112108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509931800000,24.651604) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509931860000,22.036058) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509931920000,20.777042) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509931980000,25.17894) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509932040000,23.718435) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509932100000,21.653278) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509932160000,25.843876) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509932220000,24.245773) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509932280000,22.180616) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509932340000,20.720112) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509932400000,20.809978) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509932460000,22.607162) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509932520000,22.797821) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509932580000,21.337317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509932640000,23.070608) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509932700000,23.786196) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509932760000,22.325691) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509932820000,23.508595) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509932880000,24.249641) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509932940000,22.85303) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509933000000,24.58632) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509933060000,23.125816) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509933120000,24.866846) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509933180000,20.462542) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509933240000,25.203526) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509933300000,25.944572) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509933360000,21.677864) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509933420000,20.079762) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509933480000,20.471909) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509933540000,22.2052) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509933600000,20.744696) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509933660000,25.146595) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509933720000,22.47697) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509933780000,20.466078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509933840000,20.555944) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509933900000,24.353191) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509933960000,22.892685) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509934020000,21.63367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509934080000,25.018124) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509934140000,23.420023) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509934200000,21.959518) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509934260000,20.700502) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509934320000,24.635345) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509934380000,23.037243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509934440000,21.026352) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509934500000,25.162683) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509934560000,25.25255) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509934620000,23.65445) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509934680000,25.387741) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509934740000,25.5784) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509934800000,25.12534) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509934860000,20.721035) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509934920000,21.462082) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509934980000,20.001575) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509935040000,21.38597) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509935100000,21.98942) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509935160000,20.528913) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509935220000,22.262207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509935280000,22.352074) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509935340000,23.157013) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509935400000,24.339916) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509935460000,22.879412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509935520000,23.620457) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509935580000,25.41764) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509935640000,23.957136) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509935700000,24.147795) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509935760000,25.881086) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509935820000,23.678516) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509935880000,22.218014) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509935940000,20.152855) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509936000000,25.692335) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509936060000,24.094234) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509936120000,22.230566) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509936180000,20.77006) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509936240000,25.309555) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509936300000,23.711454) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509936360000,21.297398) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509936420000,25.836893) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509936480000,24.376389) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509936540000,22.173634) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509936600000,20.91462) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509936660000,20.454098) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509936720000,24.38894) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509936780000,22.79084) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509936840000,21.330336) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509936900000,24.071072) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509936960000,24.26173) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509937020000,22.66363) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509937080000,24.396921) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509937140000,25.339457) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509937200000,23.878952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509937260000,25.474648) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509937320000,25.665304) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509937380000,25.755173) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509937440000,21.689953) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509937500000,20.091852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509937560000,20.832897) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509937620000,22.015802) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509937680000,20.756786) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509937740000,21.360235) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509937800000,23.093527) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509937860000,21.633022) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509937920000,21.219213) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509937980000,22.814907) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509938040000,21.354403) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509938100000,21.444271) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509938160000,25.379112) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509938220000,23.982502) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509938280000,21.97161) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509938340000,25.906452) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509938400000,24.445946) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509938460000,23.049334) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509938520000,21.588829) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509938580000,24.973284) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509938640000,23.51278) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509938700000,22.116167) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509938760000,20.05101) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509938820000,20.140877) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509938880000,24.129986) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509938940000,21.92723) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509939000000,21.47417) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509939060000,20.013666) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509939120000,21.746958) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509939180000,22.350407) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509939240000,20.541004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509939300000,22.274296) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509939360000,23.015343) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509939420000,21.41724) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509939480000,23.35202) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509939540000,25.093052) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509939600000,23.632547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509939660000,25.228243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509939720000,23.767738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509939780000,24.710274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509939840000,25.893177) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509939900000,24.295074) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509939960000,25.036121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509940020000,20.164946) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509940080000,24.704441) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509940140000,23.106339) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509940200000,20.490793) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509940260000,20.580662) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509940320000,25.321646) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509940380000,23.118893) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509940440000,21.658386) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509940500000,25.647495) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509940560000,23.783827) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509940620000,22.185724) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509940680000,20.72522) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509940740000,25.264715) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509940800000,22.850658) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509940860000,21.252558) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509940920000,21.342424) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509940980000,25.277267) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509941040000,23.816763) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509941100000,23.226107) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509941160000,20.610561) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509941220000,25.150057) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509941280000,23.689552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509941340000,25.486736) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509941400000,20.227783) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509941460000,24.21689) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509941520000,25.950182) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509941580000,20.75512) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509941640000,20.844988) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509941700000,22.57828) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509941760000,22.768938) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509941820000,21.170835) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509941880000,23.105618) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509941940000,21.645113) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509942000000,22.386158) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509942060000,23.981853) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509942120000,21.366493) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509942180000,22.10754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509942240000,23.840832) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509942300000,22.24273) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509942360000,22.332598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509942420000,25.918541) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509942480000,24.458036) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509942540000,22.859936) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509942600000,20.794777) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509942660000,25.535763) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509942720000,23.52487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509942780000,21.322115) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509942840000,25.86161) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509942900000,24.602594) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509942960000,23.14209) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509943020000,20.939335) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509943080000,20.478815) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509943140000,25.01831) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509943200000,23.9606) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509943260000,22.362497) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509943320000,20.901993) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509943380000,24.286448) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509943440000,23.027431) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509943500000,21.42933) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509943560000,23.162622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509943620000,23.903667) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509943680000,22.094265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509943740000,23.68996) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509943800000,25.981379) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509943860000,24.520874) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509943920000,20.254166) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509943980000,24.857552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509944040000,25.04821) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509944100000,20.781504) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509944160000,25.321) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509944220000,25.31998) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509944280000,21.053272) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509944340000,25.04238) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509944400000,25.783424) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509944460000,21.580608) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509944520000,21.670477) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509944580000,20.209972) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509944640000,23.594427) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509944700000,21.996325) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509944760000,20.73731) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509944820000,24.672153) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509944880000,23.211647) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509944940000,21.613546) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509945000000,25.19949) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509945060000,23.738985) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509945120000,22.27848) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509945180000,22.230751) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509945240000,20.165594) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509945300000,25.162148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509945360000,23.701643) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509945420000,21.498888) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509945480000,20.038383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509945540000,24.779367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509945600000,22.163822) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509945660000,20.565722) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509945720000,25.105217) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509945780000,21.039997) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509945840000,21.781044) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509945900000,21.733315) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509945960000,22.916218) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509946020000,23.657265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509946080000,22.398249) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509946140000,23.993942) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509946200000,22.53344) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509946260000,22.724096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509946320000,23.85292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509946380000,22.25482) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509946440000,22.995865) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509946500000,24.729156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509946560000,22.919754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509946620000,25.073576) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509946680000,20.806868) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509946740000,25.346363) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509946800000,23.885859) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509946860000,21.884592) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509946920000,25.8737) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509946980000,24.413197) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509947040000,22.348038) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509947100000,20.951426) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509947160000,25.490921) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509947220000,22.875376) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509947280000,21.414871) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509947340000,21.367142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509947400000,20.914083) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509947460000,24.848927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509947520000,22.838032) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509947580000,21.239931) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509947640000,25.376263) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509947700000,23.915758) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509947760000,22.455254) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509947820000,24.05095) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509947880000,24.443096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509947940000,22.982592) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509948000000,24.715883) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509948060000,20.869705) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509948120000,25.409199) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509948180000,20.793592) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509948240000,21.53464) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509948300000,25.936537) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509948360000,21.669828) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509948420000,25.604856) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509948480000,25.795515) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509948540000,21.39121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509948600000,25.930706) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509948660000,20.87324) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509948720000,22.606533) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509948780000,22.558804) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509948840000,22.749462) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509948900000,24.482754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509948960000,23.223738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509949020000,21.625635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509949080000,25.560478) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509949140000,23.549585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509949200000,22.29057) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509949260000,20.087816) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509949320000,24.627312) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509949380000,23.166807) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509949440000,22.454016) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509949500000,22.406286) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509949560000,20.945782) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509949620000,25.485275) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509949680000,23.420118) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509949740000,22.023506) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509949800000,20.012613) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509949860000,23.947456) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509949920000,22.486952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509949980000,21.09034) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509950040000,22.823631) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509950100000,23.01429) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509950160000,23.104156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509950220000,24.699852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509950280000,25.642387) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509950340000,24.181883) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509950400000,25.364786) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509950460000,25.968235) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509950520000,23.903263) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509950580000,25.636555) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509950640000,24.17605) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509950700000,24.7795) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509950760000,20.163893) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509950820000,24.703388) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509950880000,20.994806) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509950940000,22.590502) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509951000000,21.129997) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509951060000,21.522144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509951120000,23.255436) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509951180000,21.657333) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509951240000,20.196829) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509951300000,24.33316) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509951360000,22.32227) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509951420000,20.724167) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509951480000,24.65901) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509951540000,24.205952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509951600000,24.295818) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509951660000,22.697716) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509951720000,20.082172) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509951780000,24.621666) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509951840000,23.362652) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509951900000,21.159897) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509951960000,25.699392) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509952020000,23.6885) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509952080000,21.824831) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509952140000,20.22673) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509952200000,24.766224) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509952260000,20.499517) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509952320000,22.240547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509952380000,20.843935) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509952440000,22.577227) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509952500000,23.318274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509952560000,21.857769) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509952620000,22.848995) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509952680000,23.039654) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509952740000,21.57915) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509952800000,23.31244) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509952860000,21.915829) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509952920000,22.656876) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509952980000,23.839779) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509953040000,23.929646) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509953100000,24.533096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509953160000,20.467876) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509953220000,25.007372) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509953280000,25.19803) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509953340000,20.793724) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509953400000,25.53471) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509953460000,24.074203) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509953520000,22.009047) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509953580000,20.410946) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509953640000,25.407497) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509953700000,23.342342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509953760000,23.432209) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509953820000,21.834106) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509953880000,20.373602) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509953940000,23.959547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509954000000,22.499043) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509954060000,20.90094) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509954120000,24.835783) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509954180000,23.576767) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509954240000,21.565874) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509954300000,25.363121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509954360000,23.902615) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509954420000,23.992483) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509954480000,25.927265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509954540000,20.530714) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509954600000,24.519821) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509954660000,20.253113) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509954720000,20.38969) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509954780000,24.79159) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509954840000,20.524881) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509954900000,20.71554) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509954960000,25.456524) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509955020000,21.05222) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509955080000,25.591713) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509955140000,21.883133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509955200000,23.066036) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509955260000,21.669424) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509955320000,22.41047) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509955380000,24.14376) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509955440000,22.683258) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509955500000,21.286644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509955560000,24.6711) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509955620000,23.210594) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509955680000,21.75009) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509955740000,20.554781) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509955800000,25.094276) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509955860000,24.633757) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509955920000,22.5686) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509955980000,20.970497) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509956040000,25.711483) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509956100000,24.250977) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509956160000,21.635433) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509956220000,20.03733) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509956280000,24.778315) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509956340000,22.713158) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509956400000,21.252653) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509956460000,25.65455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509956520000,23.240496) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509956580000,23.330362) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509956640000,21.869858) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509956700000,23.465553) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509956760000,24.2066) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509956820000,21.59124) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509956880000,23.324532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509956940000,23.92798) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509957000000,22.467476) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509957060000,24.402256) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509957120000,24.592915) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509957180000,22.994812) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509957240000,24.728104) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509957300000,24.817972) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509957360000,25.760508) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509957420000,21.356203) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509957480000,25.34531) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509957540000,20.086355) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509957600000,22.021137) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509957660000,20.423035) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509957720000,24.96253) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509957780000,22.346985) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509957840000,21.893927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509957900000,20.295824) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509957960000,24.230667) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509958020000,24.320536) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509958080000,22.309643) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509958140000,20.308378) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509958200000,24.847874) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509958260000,23.387367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509958320000,21.926863) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509958380000,25.925598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509958440000,23.914705) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509958500000,22.4542) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509958560000,20.389044) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509958620000,24.992432) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509958680000,25.082298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509958740000,22.466753) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509958800000,21.006248) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509958860000,25.408146) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509958920000,20.536972) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509958980000,21.278017) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509959040000,25.267124) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509959100000,20.86282) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509959160000,21.805355) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509959220000,20.34485) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509959280000,22.078142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509959340000,20.48004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509959400000,22.221071) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509959460000,24.155851) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509959520000,22.695347) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509959580000,23.298796) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509959640000,25.03209) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509959700000,23.222685) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509959760000,23.96373) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509959820000,25.559425) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509959880000,24.09892) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509959940000,23.645863) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509960000000,21.030317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509960060000,25.432215) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509960120000,25.522083) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509960180000,23.456926) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509960240000,22.19791) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509960300000,20.599808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509960360000,23.984264) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509960420000,22.523758) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509960480000,21.264744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509960540000,25.666641) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509960600000,23.601484) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509960660000,21.590591) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509960720000,20.331575) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509960780000,24.128822) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509960840000,24.218689) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509960900000,22.758184) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509960960000,20.14264) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509961020000,23.94007) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509961080000,22.479565) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509961140000,24.212856) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509961200000,24.953903) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509961260000,23.557291) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509961320000,24.740194) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509961380000,25.481241) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509961440000,24.020737) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509961500000,25.81792) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509961560000,25.907787) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509961620000,20.098446) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509961680000,21.831738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509961740000,20.233637) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509961800000,21.176172) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509961860000,22.909464) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509961920000,20.898571) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509961980000,21.50202) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509962040000,24.242758) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509962100000,22.782253) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509962160000,21.321749) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509962220000,25.118994) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509962280000,24.658474) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509962340000,23.399458) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509962400000,21.334301) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509962460000,25.736198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509962520000,24.275694) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509962580000,21.861639) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509962640000,20.401134) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509962700000,24.803032) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509962760000,23.342527) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509962820000,21.478859) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509962880000,25.467966) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509962940000,25.420237) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509963000000,23.35508) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509963060000,21.894575) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509963120000,25.829601) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509963180000,21.425297) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509963240000,21.615955) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509963300000,20.15545) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509963360000,22.090233) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509963420000,22.693682) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509963480000,21.233177) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509963540000,22.41608) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509963600000,23.358616) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509963660000,23.310886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509963720000,25.044178) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509963780000,23.583673) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509963840000,23.774332) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509963900000,25.571516) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509963960000,24.111012) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509964020000,24.852057) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509964080000,20.585348) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509964140000,25.994694) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509964200000,20.185352) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509964260000,21.918644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509964320000,20.458138) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509964380000,20.41041) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509964440000,24.546741) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509964500000,22.535849) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509964560000,21.075344) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509964620000,24.87259) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509964680000,23.613575) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509964740000,22.153069) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509964800000,25.537525) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509964860000,23.939423) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509964920000,22.680407) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509964980000,21.219902) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509965040000,25.154745) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509965100000,25.107016) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509965160000,23.096123) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509965220000,20.426498) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509965280000,24.965992) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509965340000,23.367891) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509965400000,25.101183) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509965460000,25.493332) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509965520000,24.032825) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509965580000,25.628521) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509965640000,20.369568) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509965700000,25.110552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509965760000,20.293455) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509965820000,22.447277) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509965880000,20.986773) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509965940000,22.720064) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509966000000,21.461048) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509966060000,22.064497) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509966120000,23.247402) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509966180000,21.786898) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509966240000,22.640081) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509966300000,24.235775) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509966360000,22.775272) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509966420000,22.965929) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509966480000,24.900711) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509966540000,24.852982) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509966600000,23.392475) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509966660000,21.327318) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509966720000,25.316425) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509966780000,23.919813) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509966840000,21.854656) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509966900000,20.394152) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509966960000,24.933647) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509967020000,23.537035) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509967080000,20.92149) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509967140000,25.460985) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509967200000,25.550852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509967260000,23.348099) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509967320000,21.283127) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509967380000,25.272234) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509967440000,23.207075) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509967500000,21.608974) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509967560000,20.349958) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509967620000,22.08325) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509967680000,22.273909) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509967740000,20.675808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509967800000,22.610588) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509967860000,23.351635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509967920000,23.441502) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509967980000,25.037197) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509968040000,25.227856) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509968100000,23.96884) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509968160000,25.702131) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509968220000,24.10403) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509968280000,24.845076) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509968340000,21.035425) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509968400000,25.57492) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509968460000,20.17837) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509968520000,21.911661) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509968580000,20.652647) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509968640000,22.393677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509968700000,23.989372) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509968760000,22.528866) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509968820000,21.068361) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509968880000,25.204693) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509968940000,23.606592) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509969000000,21.5957) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509969060000,25.530542) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509969120000,24.271526) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509969180000,22.673426) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509969240000,21.212921) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509969300000,24.597376) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509969360000,24.687243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509969420000,22.484673) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509969480000,20.419516) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509969540000,24.959011) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509969600000,22.948118) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509969660000,20.946854) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509969720000,25.48635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509969780000,24.025845) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509969840000,25.759136) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509969900000,20.564075) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509969960000,24.553183) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509970020000,20.286474) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509970080000,22.577892) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509970140000,20.97979) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509970200000,22.914572) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509970260000,23.10523) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509970320000,21.644726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509970380000,23.24042) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509970440000,22.787361) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509970500000,23.528408) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509970560000,24.711311) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509970620000,23.113209) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509970680000,24.055744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509970740000,25.789036) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509970800000,25.878904) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509970860000,24.280802) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509970920000,21.665257) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509970980000,20.406242) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509971040000,24.945736) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509971100000,22.742983) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509971160000,21.282478) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509971220000,25.473076) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509971280000,23.407917) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509971340000,21.809816) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509971400000,20.349312) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509971460000,20.439178) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509971520000,23.219166) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509971580000,21.621063) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509971640000,20.160559) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509971700000,24.095402) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509971760000,22.836386) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509971820000,21.238285) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509971880000,24.62274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509971940000,23.162235) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509972000000,21.90322) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509972060000,23.498915) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509972120000,24.23996) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509972180000,23.77944) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509972240000,25.512732) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509972300000,20.31767) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509972360000,24.857166) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509972420000,20.590458) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509972480000,20.781116) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509972540000,20.19046) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509972600000,21.923752) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509972660000,20.463247) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509972720000,21.204292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509972780000,23.001476) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509972840000,20.990585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509972900000,23.282003) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509972960000,25.015295) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509973020000,23.417192) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509973080000,22.158178) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509973140000,25.542633) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509973200000,24.082127) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509973260000,22.484026) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509973320000,20.620358) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509973380000,25.159853) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509973440000,23.14896) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509973500000,20.946207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509973560000,24.881233) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509973620000,24.971102) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509973680000,23.510597) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509973740000,21.307842) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509973800000,25.296951) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509973860000,24.037933) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509973920000,21.972776) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509973980000,20.374676) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509974040000,24.914171) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509974100000,22.500114) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509974160000,21.03961) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509974220000,25.44151) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509974280000,21.1748) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509974340000,23.466219) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509974400000,21.656815) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509974460000,23.25251) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509974520000,23.993557) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509974580000,22.53305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509974640000,25.273788) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509974700000,23.675688) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509974760000,23.866346) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509974820000,25.599638) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509974880000,24.340622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509974940000,24.94407) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509975000000,20.677362) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509975060000,20.216843) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509975120000,20.95789) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509975180000,22.755074) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509975240000,21.294569) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509975300000,25.834063) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509975360000,23.218517) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509975420000,21.821905) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509975480000,20.3614) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509975540000,24.296244) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509975600000,22.83574) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509975660000,20.63317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509975720000,24.017624) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509975780000,24.107492) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509975840000,22.646988) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509975900000,21.048885) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509975960000,25.185217) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509976020000,23.174324) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509976080000,21.71382) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509976140000,25.511066) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509976200000,24.25205) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509976260000,22.791546) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509976320000,20.176) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509976380000,24.5779) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509976440000,24.667767) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509976500000,20.602547) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509976560000,21.343594) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509976620000,25.745491) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509976680000,20.928396) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509976740000,22.676888) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509976800000,21.216383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509976860000,22.812078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509976920000,21.351574) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509976980000,21.743721) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509977040000,23.477013) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509977100000,21.87891) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509977160000,24.17033) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509977220000,25.903622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509977280000,24.094217) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509977340000,24.697666) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509977400000,20.430958) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509977460000,24.970453) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509977520000,23.71144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509977580000,21.508684) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509977640000,25.497791) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509977700000,24.037287) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509977760000,21.367662) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509977820000,25.76956) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509977880000,25.859428) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509977940000,23.243883) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509978000000,21.783379) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509978060000,20.386765) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509978120000,24.92626) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509978180000,22.861103) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509978240000,20.85021) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509978300000,25.453598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509978360000,23.388441) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509978420000,21.927937) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509978480000,20.467432) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509978540000,22.264616) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509978600000,24.005646) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509978660000,22.545141) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509978720000,24.278433) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509978780000,24.881882) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509978840000,24.428823) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509978900000,25.611727) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509978960000,20.352774) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509979020000,24.754673) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509979080000,20.689453) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509979140000,25.228949) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509979200000,25.419605) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509979260000,21.0153) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509979320000,21.10517) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509979380000,22.047705) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509979440000,23.780996) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509979500000,22.182894) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509979560000,22.373552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509979620000,24.308334) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509979680000,22.847828) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509979740000,21.249727) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509979800000,25.18457) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509979860000,22.56921) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509979920000,21.108706) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509979980000,24.90595) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509980040000,24.99582) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509980100000,23.535313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509980160000,21.121258) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509980220000,25.523155) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509980280000,24.06265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509980340000,22.602146) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509980400000,20.738478) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509980460000,25.140377) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509980520000,23.129484) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509980580000,21.064327) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509980640000,25.805311) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509980700000,25.757582) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509980760000,21.490873) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509980820000,21.681532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509980880000,20.221027) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509980940000,22.824167) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509981000000,23.565214) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509981060000,22.10471) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509981120000,23.287613) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509981180000,24.092552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509981240000,22.632046) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509981300000,24.36534) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509981360000,22.904835) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509981420000,25.058655) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509981480000,20.443048) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509981540000,24.982544) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509981600000,25.72359) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509981660000,21.319284) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509981720000,20.060268) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509981780000,20.250927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509981840000,21.984219) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509981900000,20.386118) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509981960000,24.321144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509982020000,22.25599) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509982080000,20.245096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509982140000,20.197367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509982200000,24.13221) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509982260000,22.873194) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509982320000,21.41269) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509982380000,25.814587) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509982440000,23.199041) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509982500000,21.940025) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509982560000,20.47952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509982620000,24.276768) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509982680000,22.816261) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509982740000,21.006859) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509982800000,24.941702) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509982860000,24.893972) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509982920000,23.433468) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509982980000,25.16676) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509983040000,21.260172) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509983100000,25.66207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509983160000,21.39536) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509983220000,22.136408) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509983280000,20.877392) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509983340000,22.473087) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509983400000,22.663746) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509983460000,21.20324) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509983520000,23.138021) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509983580000,23.090292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509983640000,23.831339) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509983700000,25.014242) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509983760000,23.553738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509983820000,24.358677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509983880000,20.091969) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509983940000,24.631462) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509984000000,24.82212) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509984060000,25.813349) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509984120000,24.352844) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509984180000,22.89234) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509984240000,20.82718) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509984300000,20.779451) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509984360000,24.970049) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509984420000,22.904892) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509984480000,21.444387) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509984540000,25.846285) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509984600000,24.587269) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509984660000,21.971724) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509984720000,20.511219) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509984780000,24.913118) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509984840000,23.04945) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509984900000,21.588945) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509984960000,21.128426) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509985020000,24.92567) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509985080000,23.465166) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509985140000,23.012108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509985200000,24.7454) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509985260000,25.348848) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509985320000,23.337955) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509985380000,25.272736) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509985440000,20.013783) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509985500000,24.41568) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509985560000,20.148973) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509985620000,20.54112) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509985680000,20.630987) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509985740000,22.226683) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509985800000,20.766178) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509985860000,21.507223) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509985920000,22.891617) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509985980000,21.293516) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509986040000,22.034561) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509986100000,23.767853) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509986160000,21.70288) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509986220000,20.104778) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509986280000,23.489235) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509986340000,22.028728) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509986400000,22.118597) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509986460000,20.117332) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509986520000,24.656826) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509986580000,22.645935) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509986640000,20.580778) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509986700000,25.184164) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509986760000,23.72366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509986820000,22.263155) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509986880000,25.64761) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509986940000,24.250998) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509987000000,22.790493) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509987060000,20.725336) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509987120000,20.815203) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509987180000,25.217102) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509987240000,23.609003) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509987300000,22.148497) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509987360000,20.687992) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509987420000,22.283688) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509987480000,23.226223) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509987540000,21.21533) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509987600000,22.948622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509987660000,23.55207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509987720000,22.293056) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509987780000,24.026348) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509987840000,25.767378) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509987900000,24.169277) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509987960000,25.902569) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509988020000,24.643553) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509988080000,25.384598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509988140000,20.980293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509988200000,24.969402) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509988260000,25.10598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509988320000,20.839272) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509988380000,25.241169) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509988440000,23.780664) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509988500000,21.36661) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509988560000,21.456476) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509988620000,25.858376) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509988680000,23.793217) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509988740000,22.332712) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509988800000,20.52331) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509988860000,24.320555) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509988920000,22.86005) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509988980000,21.399546) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509989040000,20.14053) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509989100000,23.937777) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509989160000,21.926884) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509989220000,22.01675) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509989280000,25.951593) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509989340000,25.360939) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509989400000,23.900433) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509989460000,21.284887) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509989520000,25.824383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509989580000,24.42777) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509989640000,20.161062) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509989700000,20.90211) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509989760000,24.891216) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509989820000,20.6884) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509989880000,21.429447) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509989940000,21.519314) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509990000000,23.252605) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509990060000,21.654503) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509990120000,22.046652) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509990180000,23.779943) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509990240000,22.319439) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509990300000,22.922888) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509990360000,24.051712) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509990420000,22.04082) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509990480000,22.781866) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509990540000,24.37756) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509990600000,23.118546) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509990660000,23.208412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509990720000,20.592867) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509990780000,24.994766) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509990840000,23.534262) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509990900000,21.670593) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509990960000,20.210087) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509991020000,24.611986) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509991080000,21.99644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509991140000,20.737425) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509991200000,25.27692) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509991260000,23.67882) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509991320000,21.61366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509991380000,21.153141) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509991440000,20.700083) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509991500000,24.49733) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509991560000,23.036823) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509991620000,21.576319) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509991680000,25.162262) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509991740000,23.564161) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509991800000,22.103657) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509991860000,23.836948) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509991920000,24.779484) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509991980000,23.181381) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509992040000,24.364286) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509992100000,20.655704) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509992160000,25.1952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509992220000,20.992384) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509992280000,25.53188) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509992340000,25.722538) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509992400000,21.45583) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509992460000,25.25326) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509992520000,25.994305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509992580000,21.727598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509992640000,25.716705) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509992700000,20.521643) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509992760000,22.254936) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509992820000,22.344803) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509992880000,20.884298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509992940000,24.681543) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509993000000,22.87214) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509993060000,21.411636) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509993120000,25.346478) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509993180000,23.748377) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509993240000,22.48936) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509993300000,25.873816) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509993360000,24.413311) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509993420000,22.81521) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509993480000,22.905077) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509993540000,21.847366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509993600000,25.836473) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509993660000,24.238373) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509993720000,22.173214) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509993780000,20.914198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509993840000,25.453693) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509993900000,21.049389) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509993960000,21.240047) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509994020000,25.981031) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509994080000,21.714323) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509994140000,22.317772) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509994200000,22.40764) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509994260000,23.590544) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509994320000,24.53308) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509994380000,22.934978) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509994440000,24.66827) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509994500000,23.207764) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509994560000,22.793955) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509994620000,24.38965) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509994680000,22.929146) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509994740000,23.670193) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509994800000,25.604973) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509994860000,24.00687) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509994920000,25.747902) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509994980000,21.481194) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509995040000,20.020689) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509995100000,24.624077) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509995160000,22.558918) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509995220000,20.548027) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509995280000,25.08752) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509995340000,23.086256) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509995400000,21.625751) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509995460000,20.165247) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509995520000,23.549702) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509995580000,22.959045) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509995640000,23.048914) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509995700000,21.58841) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509995760000,25.52325) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509995820000,23.92515) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509995880000,22.115746) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509995940000,20.050589) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509996000000,24.590084) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509996060000,22.991983) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509996120000,24.926764) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509996180000,25.117422) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509996240000,23.656918) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509996300000,25.252613) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509996360000,21.544031) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509996420000,20.285015) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509996480000,21.467918) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509996540000,22.07137) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509996600000,20.610863) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509996660000,21.739687) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509996720000,20.279182) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509996780000,20.882631) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509996840000,22.065536) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509996900000,20.80652) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509996960000,21.547567) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509997020000,23.143261) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509997080000,23.23313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509997140000,23.423788) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509997200000,25.358568) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509997260000,23.760468) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509997320000,22.299961) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509997380000,20.234804) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509997440000,24.425402) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509997500000,22.8273) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509997560000,20.762142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509997620000,25.301638) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509997680000,24.84858) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509997740000,24.80085) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509997800000,22.185305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509997860000,20.7248) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509997920000,25.264294) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509997980000,23.26303) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509998040000,21.802525) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509998100000,25.791634) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509998160000,23.726475) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509998220000,22.329863) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509998280000,20.869358) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509998340000,22.60265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509998400000,22.793308) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509998460000,22.745579) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509998520000,24.680359) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509998580000,25.421406) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509998640000,23.960901) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509998700000,25.556595) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509998760000,25.142786) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509998820000,23.682281) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509998880000,25.415573) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509998940000,23.817472) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509999000000,24.760008) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509999060000,25.942911) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509999120000,24.482407) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509999180000,20.636229) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509999240000,22.36952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509999300000,21.110504) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509999360000,21.301163) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509999420000,22.896858) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509999480000,21.436352) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509999540000,20.177338) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509999600000,24.112179) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509999660000,22.514078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509999720000,20.503185) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509999780000,24.550167) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509999840000,23.08966) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509999900000,23.041931) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1509999960000,21.581427) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510000020000,24.965881) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510000080000,23.706867) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510000140000,22.108765) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510000200000,20.043608) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510000260000,24.583103) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510000320000,22.773699) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510000380000,20.570946) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510000440000,25.11044) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510000500000,23.649937) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510000560000,25.584717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510000620000,21.738539) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510000680000,25.727646) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510000740000,21.460938) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510000800000,22.201984) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510000860000,25.999414) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510000920000,21.732706) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510000980000,21.923365) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510001040000,20.46286) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510001100000,22.260044) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510001160000,20.79954) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510001220000,21.540585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510001280000,22.72349) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510001340000,22.67576) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510001400000,23.618296) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510001460000,25.351587) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510001520000,23.891083) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510001580000,22.29298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510001640000,25.878925) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510001700000,24.418419) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510001760000,22.957914) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510001820000,20.755161) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510001880000,20.302101) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510001940000,24.29121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510002000000,22.226051) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510002060000,22.178322) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510002120000,20.717817) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510002180000,25.458801) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510002240000,22.843258) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510002300000,21.245155) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510002360000,25.78465) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510002420000,23.920982) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510002480000,22.460478) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510002540000,20.862375) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510002600000,24.24683) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510002660000,22.987816) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510002720000,23.077682) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510002780000,24.673378) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510002840000,25.414425) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510002900000,23.403532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510002960000,24.532356) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510003020000,25.135805) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510003080000,23.6753) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510003140000,25.408592) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510003200000,25.80074) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510003260000,24.202637) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510003320000,25.935928) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510003380000,24.475426) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510003440000,20.766844) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510003500000,22.564028) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510003560000,20.553135) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510003620000,21.294182) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510003680000,23.027473) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510003740000,21.63086) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510003800000,20.170355) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510003860000,23.55481) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510003920000,22.094305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510003980000,21.503649) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510004040000,25.438492) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510004100000,23.977987) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510004160000,23.517467) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510004220000,21.314713) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510004280000,20.055698) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510004340000,24.595192) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510004400000,23.134687) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510004460000,20.931934) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510004520000,25.12253) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510004580000,23.662025) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510004640000,21.596869) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510004700000,25.998766) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510004760000,24.739752) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510004820000,22.124207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510004880000,22.214073) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510004940000,20.615973) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510005000000,22.349264) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510005060000,22.485842) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510005120000,20.474949) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510005180000,22.070644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510005240000,22.811691) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510005300000,21.552675) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510005360000,23.285967) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510005420000,21.687864) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510005480000,21.878523) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510005540000,23.813305) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510005600000,23.903172) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510005660000,24.506622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510005720000,20.239912) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510005780000,24.22902) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510005840000,25.171555) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510005900000,20.76725) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510005960000,25.306746) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510006020000,23.846241) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510006080000,22.238142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510006140000,20.64004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510006200000,25.179535) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510006260000,23.114378) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510006320000,23.204247) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510006380000,21.807632) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510006440000,25.19209) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510006500000,23.731583) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510006560000,22.271078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510006620000,20.874466) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510006680000,24.809309) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510006740000,22.798416) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510006800000,21.337912) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510006860000,25.336647) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510006920000,23.876143) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510006980000,23.96601) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510007040000,21.350464) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510007100000,25.752361) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510007160000,23.68739) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510007220000,25.420681) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510007280000,20.161728) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510007340000,24.563625) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510007400000,25.948019) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510007460000,20.689066) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510007520000,25.228561) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510007580000,20.824255) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510007640000,25.565239) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510007700000,21.30627) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510007760000,23.039562) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510007820000,21.441462) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510007880000,22.182507) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510007940000,24.117289) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510008000000,22.106396) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510008060000,22.709845) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510008120000,24.443136) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510008180000,23.990078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510008240000,22.529573) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510008300000,20.326818) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510008360000,24.315926) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510008420000,24.405794) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510008480000,22.542126) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510008540000,20.944023) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510008600000,25.483519) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510008660000,22.867973) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510008720000,21.60896) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510008780000,20.010857) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510008840000,24.550352) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510008900000,22.485195) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510008960000,20.67579) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510009020000,25.07769) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510009080000,23.012531) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510009140000,23.1024) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510009200000,21.641895) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510009260000,22.633121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510009320000,22.82378) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510009380000,21.363276) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510009440000,23.096567) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510009500000,23.901506) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510009560000,22.441002) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510009620000,23.623905) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510009680000,24.364952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510009740000,22.968338) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510009800000,24.70163) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510009860000,24.791498) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510009920000,24.982157) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510009980000,20.577852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510010040000,25.318836) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510010100000,20.059881) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510010160000,21.793173) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510010220000,20.195072) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510010280000,21.393177) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510010340000,23.126469) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510010400000,21.665964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510010460000,20.067862) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510010520000,24.204193) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510010580000,23.743673) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510010640000,22.283169) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510010700000,20.080414) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510010760000,24.61991) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510010820000,23.360893) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510010880000,20.74535) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510010940000,25.147247) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510011000000,23.686743) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510011060000,22.427727) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510011120000,20.36257) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510011180000,24.76447) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510011240000,24.303947) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510011300000,22.23879) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510011360000,20.173819) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510011420000,24.575716) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510011480000,20.309008) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510011540000,20.499666) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510011600000,25.24065) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510011660000,20.836346) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510011720000,21.577393) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510011780000,20.116886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510011840000,21.50128) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510011900000,22.104729) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510011960000,22.194597) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510012020000,23.927889) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510012080000,22.467384) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510012140000,23.272324) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510012200000,24.455227) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510012260000,22.994722) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510012320000,23.735767) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510012380000,20.33891) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510012440000,24.878403) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510012500000,25.069061) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510012560000,20.802353) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510012620000,25.405743) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510012680000,25.49561) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510012740000,23.430452) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510012800000,21.41956) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510012860000,25.821457) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510012920000,23.95779) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510012980000,22.497284) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510013040000,21.03678) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510013100000,25.438679) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510013160000,23.024622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510013220000,21.564117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510013280000,20.103613) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510013340000,23.900858) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510013400000,23.990726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510013460000,21.375366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510013520000,25.310207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510013580000,23.712107) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510013640000,22.251602) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510013700000,24.186382) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510013760000,24.37704) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510013820000,22.77894) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510013880000,24.512232) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510013940000,25.454767) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510014000000,23.994263) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510014060000,25.589956) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510014120000,21.330988) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510014180000,25.870483) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510014240000,21.805264) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510014300000,20.207163) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510014360000,20.948208) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510014420000,22.131113) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510014480000,21.678053) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510014540000,22.281502) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510014600000,24.014793) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510014660000,22.554289) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510014720000,22.946438) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510014780000,24.542133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510014840000,24.632) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510014900000,23.171495) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510014960000,21.106339) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510015020000,25.709724) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510015080000,23.698833) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510015140000,21.633675) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510015200000,20.17317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510015260000,24.776558) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510015320000,23.316053) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510015380000,20.700508) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510015440000,25.240004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510015500000,25.192274) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510015560000,22.52265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510015620000,21.062143) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510015680000,25.05125) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510015740000,22.848497) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510015800000,21.589481) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510015860000,20.128977) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510015920000,21.862268) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510015980000,22.465717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510016040000,20.656315) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510016100000,22.389606) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510016160000,23.130653) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510016220000,23.082924) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510016280000,24.816216) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510016340000,25.208363) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510016400000,23.747858) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510016460000,25.343552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510016520000,23.883049) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510016580000,20.526848) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510016640000,21.709751) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510016700000,20.11165) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510016760000,20.852695) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510016820000,22.787477) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510016880000,21.326973) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510016940000,21.279243) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510017000000,24.663698) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510017060000,23.203194) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510017120000,21.944178) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510017180000,25.741423) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510017240000,24.280918) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510017300000,22.270027) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510017360000,20.406359) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510017420000,24.808256) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510017480000,23.347752) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510017540000,21.887247) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510017600000,24.667234) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510017660000,24.619505) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510017720000,23.159) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510017780000,21.093842) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510017840000,25.633339) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510017900000,24.236725) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510017960000,21.62118) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510018020000,20.160675) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510018080000,24.70017) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510018140000,20.497355) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510018200000,21.238401) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510018260000,25.227509) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510018320000,20.9608) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510018380000,23.114622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510018440000,21.855606) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510018500000,23.588898) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510018560000,23.779556) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510018620000,22.181454) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510018680000,24.922192) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510018740000,23.461687) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510018800000,24.202732) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510018860000,25.798428) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510018920000,23.989025) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510018980000,24.730072) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510019040000,20.463364) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510019100000,20.415634) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510019160000,24.955128) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510019220000,22.541073) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510019280000,21.080568) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510019340000,25.482466) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510019400000,23.417309) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510019460000,22.158293) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510019520000,20.147402) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510019580000,23.944647) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510019640000,22.484142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510019700000,20.41917) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510019760000,20.509037) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510019820000,24.306282) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510019880000,22.295391) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510019940000,20.834885) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510020000000,24.971218) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510020060000,23.373116) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510020120000,21.912611) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510020180000,25.297066) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510020240000,24.03805) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510020300000,22.439949) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510020360000,24.17324) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510020420000,24.914288) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510020480000,24.453766) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510020540000,20.25095) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510020600000,20.991997) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510020660000,25.531492) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510020720000,21.264784) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510020780000,20.674128) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510020840000,20.864786) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510020900000,22.598078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510020960000,21.137573) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510021020000,21.942513) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510021080000,23.675804) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510021140000,21.664911) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510021200000,23.95633) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510021260000,25.552025) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510021320000,24.293009) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510021380000,22.832504) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510021440000,20.216959) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510021500000,24.618856) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510021560000,23.35984) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510021620000,21.294683) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510021680000,25.834179) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510021740000,24.236076) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510021800000,21.016066) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510021860000,25.555561) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510021920000,25.645428) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510021980000,24.047325) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510022040000,21.982168) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510022100000,20.172766) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510022160000,24.712261) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510022220000,22.509506) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510022280000,21.049002) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510022340000,25.789986) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510022400000,23.17444) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510022460000,21.57634) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510022520000,20.115835) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510022580000,22.050615) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510022640000,24.342033) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510022700000,22.743933) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510022760000,23.926836) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510022820000,24.667883) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510022880000,24.214823) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510022940000,25.810518) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510023000000,24.350014) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510023060000,24.540672) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510023120000,20.475452) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510023180000,24.87735) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510023240000,25.618397) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510023300000,21.351688) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510023360000,20.891169) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510023420000,21.696108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510023480000,23.4294) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510023540000,21.968895) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510023600000,20.508389) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510023660000,24.507124) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510023720000,22.496231) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510023780000,21.035727) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510023840000,24.97057) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510023900000,22.768) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510023960000,21.307495) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510024020000,24.691952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510024080000,24.781818) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510024140000,23.183716) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510024200000,21.924702) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510024260000,25.859543) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510024320000,23.848652) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510024380000,22.25055) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510024440000,20.38688) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510024500000,24.926376) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510024560000,23.465872) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510024620000,25.061565) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510024680000,25.453714) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510024740000,25.543583) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510024800000,21.276873) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510024860000,21.880323) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510024920000,20.419819) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510024980000,22.610168) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510025040000,23.351213) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510025100000,21.753113) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510025160000,23.486404) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510025220000,22.227388) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510025280000,22.418047) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510025340000,24.01374) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510025400000,22.553238) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510025460000,24.844654) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510025520000,20.779436) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510025580000,25.181335) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510025640000,25.371994) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510025700000,21.105286) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510025760000,25.84627) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510025820000,24.248167) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510025880000,22.18301) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510025940000,20.172117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510026000000,24.107145) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510026060000,21.90439) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510026120000,20.443886) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510026180000,20.533754) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510026240000,23.91821) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510026300000,22.521597) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510026360000,21.061092) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510026420000,25.600586) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510026480000,23.535429) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510026540000,22.138817) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510026600000,20.127924) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510026660000,24.062767) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510026720000,22.602262) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510026780000,21.20565) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510026840000,22.938942) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510026900000,24.679972) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510026960000,23.219467) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510027020000,24.815163) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510027080000,20.563654) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510027140000,25.10315) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510027200000,20.286053) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510027260000,20.889503) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510027320000,25.630487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510027380000,21.36378) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510027440000,25.903275) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510027500000,20.506723) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510027560000,21.891117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510027620000,21.980984) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510027680000,22.72203) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510027740000,24.317726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510027800000,22.85722) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510027860000,23.249367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510027920000,24.98266) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510027980000,23.384558) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510028040000,21.924053) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510028100000,25.254429) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510028160000,23.243536) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510028220000,21.645435) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510028280000,25.580276) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510028340000,25.670145) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510028400000,24.411129) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510028460000,22.813026) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510028520000,20.197483) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510028580000,24.736977) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510028640000,23.477962) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510028700000,21.275208) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510028760000,25.814703) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510028820000,23.80381) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510028880000,21.940142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510028940000,20.342041) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510029000000,20.431908) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510029060000,22.1652) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510029120000,22.355858) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510029180000,21.765202) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510029240000,23.498493) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510029300000,24.23954) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510029360000,22.779036) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510029420000,24.57622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510029480000,24.766878) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510029540000,23.306374) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510029600000,25.039665) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510029660000,23.643053) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510029720000,25.934471) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510029780000,21.117374) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510029840000,25.65687) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510029900000,20.260319) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510029960000,22.1951) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510030020000,20.734596) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510030080000,20.925253) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510030140000,22.520948) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510030200000,20.455976) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510030260000,24.995472) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510030320000,22.930313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510030380000,21.332212) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510030440000,20.871693) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510030500000,25.008024) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510030560000,23.54752) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510030620000,21.949417) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510030680000,20.488913) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510030740000,24.074856) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510030800000,22.614353) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510030860000,21.01625) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510030920000,24.951094) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510030980000,23.692078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510031040000,21.681185) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510031100000,25.478432) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510031160000,25.568298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510031220000,24.107794) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510031280000,20.848532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510031340000,21.45198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510031400000,25.441088) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510031460000,21.17438) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510031520000,22.116915) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510031580000,20.518814) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510031640000,22.252106) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510031700000,22.442764) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510031760000,21.183748) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510031820000,22.779444) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510031880000,22.86931) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510031940000,23.610355) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510032000000,24.79326) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510032060000,23.396648) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510032120000,24.137693) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510032180000,25.870987) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510032240000,24.41048) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510032300000,22.207912) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510032360000,25.592367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510032420000,24.131863) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510032480000,22.671356) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510032540000,20.670092) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510032600000,20.75996) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510032660000,24.749067) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510032720000,22.68391) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510032780000,21.085808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510032840000,25.826794) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510032900000,24.366287) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510032960000,21.750744) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510033020000,20.152641) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510033080000,24.893625) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510033140000,22.828468) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510033200000,21.367964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510033260000,21.320234) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510033320000,24.704689) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510033380000,23.356323) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510033440000,21.895817) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510033500000,23.491512) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510033560000,24.23256) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510033620000,22.423155) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510033680000,24.156446) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510033740000,24.759895) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510033800000,23.29939) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510033860000,25.234173) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510033920000,25.424831) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510033980000,25.377102) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510034040000,21.110394) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510034100000,25.649889) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510034160000,20.592424) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510034220000,22.188118) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510034280000,20.177227) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510034340000,20.918272) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510034400000,22.047096) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510034460000,20.448994) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510034520000,24.988491) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510034580000,22.372944) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510034640000,21.11393) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510034700000,21.0662) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510034760000,25.001041) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510034820000,23.540539) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510034880000,21.529646) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510034940000,25.52838) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510035000000,24.067875) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510035060000,22.60737) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510035120000,21.146866) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510035180000,25.145601) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510035240000,23.134708) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510035300000,21.674204) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510035360000,25.609047) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510035420000,25.561317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510035480000,25.108257) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510035540000,22.492712) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510035600000,21.032207) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510035660000,25.434107) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510035720000,21.368887) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510035780000,22.109934) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510035840000,20.099041) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510035900000,21.694736) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510035960000,22.637272) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510036020000,21.176765) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510036080000,22.910057) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510036140000,22.862328) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510036200000,23.052986) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510036260000,24.987768) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510036320000,23.527264) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510036380000,24.130713) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510036440000,25.864004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510036500000,23.248644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510036560000,23.98969) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510036620000,25.585384) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510036680000,24.124882) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510036740000,22.865864) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510036800000,20.25032) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510036860000,20.20259) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510036920000,24.742086) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510036980000,22.676928) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510037040000,21.417913) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510037100000,25.81981) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510037160000,23.204266) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510037220000,21.743761) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510037280000,20.484745) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510037340000,24.886644) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510037400000,22.821487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510037460000,20.810595) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510037520000,20.900461) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510037580000,25.705154) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510037640000,24.244648) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510037700000,22.784143) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510037760000,20.168598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510037820000,24.771986) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510037880000,23.311481) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510037940000,25.044773) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510038000000,25.78582) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510038060000,24.389206) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510038120000,25.572111) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510038180000,20.313156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510038240000,20.403025) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510038300000,21.998718) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510038360000,20.739704) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510038420000,20.930363) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510038480000,22.663654) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510038540000,21.065552) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510038600000,21.202131) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510038660000,22.935423) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510038720000,20.92453) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510038780000,21.527979) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510038840000,23.46276) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510038900000,22.002254) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510038960000,22.092123) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510039020000,25.889368) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510039080000,23.878477) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510039140000,22.619461) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510039200000,20.554302) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510039260000,24.956202) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510039320000,23.495697) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510039380000,21.08164) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510039440000,25.621136) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510039500000,24.023035) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510039560000,22.56253) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510039620000,21.504818) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510039680000,21.044298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510039740000,25.446198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510039800000,23.381039) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510039860000,21.920534) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510039920000,20.661518) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510039980000,22.257214) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510040040000,22.447872) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510040100000,20.987368) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510040160000,22.922148) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510040220000,23.525597) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510040280000,22.065092) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510040340000,23.247997) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510040400000,25.539415) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510040460000,24.142803) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510040520000,25.876095) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510040580000,24.415588) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510040640000,24.606247) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510040700000,25.597475) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510040760000,24.13697) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510040820000,24.878017) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510040880000,20.61131) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510040940000,25.214695) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510041000000,25.405354) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510041060000,21.138645) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510041120000,21.228514) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510041180000,25.630413) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510041240000,23.766743) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510041300000,21.755852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510041360000,20.295345) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510041420000,24.092592) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510041480000,22.833576) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510041540000,21.373072) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510041600000,24.757526) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510041660000,23.159426) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510041720000,22.706366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510041780000,22.796234) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510041840000,20.731077) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510041900000,25.132975) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510041960000,23.122082) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510042020000,21.258413) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510042080000,25.797909) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510042140000,24.199808) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510042200000,25.9331) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510042260000,20.325247) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510042320000,24.864742) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510042380000,20.460438) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510042440000,21.201483) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510042500000,21.291351) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510042560000,22.675743) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510042620000,23.279194) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510042680000,21.818687) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510042740000,23.55198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510042800000,21.487007) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510042860000,22.090458) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510042920000,23.273361) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510042980000,21.812857) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510043040000,22.755392) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510043100000,24.351086) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510043160000,22.890581) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510043220000,24.631613) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510043280000,20.364904) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510043340000,24.968292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510043400000,23.507786) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510043460000,21.442629) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510043520000,25.431736) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510043580000,24.035126) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510043640000,21.969967) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510043700000,20.509462) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510043760000,25.048958) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510043820000,24.458302) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510043880000,21.842756) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510043940000,21.932625) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510044000000,20.47212) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510044060000,24.269365) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510044120000,23.01035) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510044180000,20.999456) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510044240000,24.9343) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510044300000,23.336199) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510044360000,22.077183) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510044420000,23.810474) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510044480000,24.001133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510044540000,22.40303) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510044600000,24.337812) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510044660000,20.62923) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510044720000,25.168726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510044780000,20.764421) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510044840000,20.955078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510044900000,24.890106) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510044960000,20.623398) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510045020000,25.025297) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510045080000,25.766342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510045140000,21.150736) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510045200000,25.690231) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510045260000,20.29368) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510045320000,22.026972) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510045380000,22.11684) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510045440000,22.508987) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510045500000,24.104683) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510045560000,22.644176) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510045620000,21.183672) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510045680000,25.320004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510045740000,23.721903) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510045800000,21.71101) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510045860000,25.645853) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510045920000,25.192795) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510045980000,23.594692) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510046040000,23.684559) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510046100000,21.069016) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510046160000,25.60851) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510046220000,24.211897) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510046280000,22.14674) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510046340000,20.686235) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510046400000,24.675343) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510046460000,22.674078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510046520000,21.213573) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510046580000,25.753069) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510046640000,21.48636) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510046700000,22.291298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510046760000,21.830778) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510046820000,23.56407) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510046880000,24.305117) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510046940000,22.707014) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510047000000,23.835838) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510047060000,24.026497) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510047120000,22.565992) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510047180000,24.161688) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510047240000,22.902672) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510047300000,23.643719) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510047360000,24.826622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510047420000,23.22852) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510047480000,25.51994) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510047540000,21.45472) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510047600000,25.994215) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510047660000,24.396112) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510047720000,21.780567) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510047780000,20.521553) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510047840000,25.061047) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510047900000,22.858294) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510047960000,21.397789) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510048020000,20.394342) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510048080000,24.329185) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510048140000,22.731083) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510048200000,22.82095) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510048260000,21.360445) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510048320000,24.94639) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510048380000,23.348288) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510048440000,21.887783) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510048500000,25.822626) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510048560000,24.56361) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510048620000,22.965508) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510048680000,20.349964) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510048740000,24.889458) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510048800000,23.630444) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510048860000,25.22614) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510048920000,21.517557) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510048980000,25.506664) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510049040000,21.239956) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510049100000,21.238937) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510049160000,25.778433) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510049220000,21.511724) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510049280000,21.702383) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510049340000,20.30577) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510049400000,22.039062) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510049460000,20.578558) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510049520000,21.319603) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510049580000,23.116787) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510049640000,22.656267) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510049700000,23.397314) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510049760000,25.130606) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510049820000,23.532503) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510049880000,22.273487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510049940000,25.657944) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510050000000,24.197437) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510050060000,22.599337) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510050120000,22.436934) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510050180000,20.976429) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510050240000,24.965536) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510050300000,22.762781) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510050360000,22.85265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510050420000,21.593634) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510050480000,20.13313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510050540000,23.930374) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510050600000,21.919481) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510050660000,20.660465) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510050720000,24.595308) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510050780000,22.997208) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510050840000,21.536703) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510050900000,25.122646) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510050960000,23.662142) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510051020000,23.614412) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510051080000,25.347704) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510051140000,20.08875) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510051200000,23.47339) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510051260000,25.069084) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510051320000,25.810131) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510051380000,24.349627) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510051440000,20.284407) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510051500000,24.686306) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510051560000,24.876965) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510051620000,20.610256) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510051680000,25.35124) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510051740000,21.505062) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510051800000,23.238354) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510051860000,21.22746) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510051920000,21.968508) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510051980000,23.76569) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510052040000,22.305187) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510052100000,20.84468) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510052160000,24.229137) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510052220000,23.638481) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510052280000,22.177977) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510052340000,20.11282) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510052400000,24.652313) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510052460000,24.604584) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510052520000,22.190529) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510052580000,20.730024) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510052640000,25.26952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510052700000,23.671417) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510052760000,21.807749) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510052820000,25.796856) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510052880000,24.336351) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510052940000,22.133598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510053000000,20.874582) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510053060000,25.414078) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510053120000,22.798532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510053180000,22.750803) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510053240000,21.290298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510053300000,22.419123) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510053360000,23.160168) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510053420000,21.562067) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510053480000,22.74497) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510053540000,23.687506) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510053600000,22.227001) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510053660000,23.822697) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510053720000,22.362192) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510053780000,22.75434) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510053840000,24.48763) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510053900000,24.439901) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510053960000,25.180946) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510054020000,20.91424) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510054080000,25.104836) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510054140000,25.708286) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510054200000,21.441576) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510054260000,25.981071) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510054320000,25.528013) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510054380000,23.325258) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510054440000,21.314367) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510054500000,25.853863) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510054560000,23.990194) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510054620000,23.942465) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510054680000,22.48196) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510054740000,25.866413) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510054800000,24.40591) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510054860000,23.009296) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510054920000,21.548792) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510054980000,25.483635) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510055040000,23.472742) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510055100000,22.07613) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510055160000,20.010973) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510055220000,24.550468) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510055280000,24.640335) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510055340000,20.23603) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510055400000,25.82222) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510055460000,24.361717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510055520000,20.095009) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510055580000,20.698458) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510055640000,25.439442) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510055700000,20.622345) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510055760000,21.363392) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510055820000,25.76529) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510055880000,21.700071) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510055940000,20.239567) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510056000000,21.980597) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510056060000,23.576292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510056120000,22.115788) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510056180000,23.058323) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510056240000,24.791615) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510056300000,23.193512) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510056360000,23.38417) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510056420000,20.124908) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510056480000,24.664404) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510056540000,23.066301) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510056600000,21.001144) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510056660000,25.191742) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510056720000,25.281609) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510056780000,23.078856) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510056840000,21.61835) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510056900000,20.157845) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510056960000,23.74379) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510057020000,22.145687) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510057080000,20.685183) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510057140000,25.224678) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510057200000,23.36101) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510057260000,21.762909) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510057320000,25.752016) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510057380000,23.68686) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510057440000,23.776726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510057500000,21.574156) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510057560000,23.30745) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510057620000,23.498108) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510057680000,22.037601) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510057740000,23.834785) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510057800000,24.575832) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510057860000,23.115328) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510057920000,24.298231) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510057980000,25.10317) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510058040000,23.642666) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510058100000,25.375957) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510058160000,25.465824) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510058220000,20.069273) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510058280000,21.453667) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510058340000,25.993162) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510058400000,20.73421) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510058460000,22.329903) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510058520000,21.876844) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510058580000,22.067503) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510058640000,23.800795) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510058700000,22.202692) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510058760000,20.943676) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510058820000,24.878521) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510058880000,24.418) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510058940000,22.819899) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510059000000,20.75474) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510059060000,25.495726) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510059120000,24.035221) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510059180000,22.437119) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510059240000,25.821573) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510059300000,24.562557) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510059360000,23.102053) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510059420000,20.8993) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510059480000,25.438793) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510059540000,24.978273) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510059600000,22.30865) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510059660000,20.710546) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510059720000,25.250042) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510059780000,20.983334) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510059840000,21.375483) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510059900000,25.77738) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510059960000,21.510672) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510060020000,22.251719) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510060080000,20.992702) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510060140000,22.588398) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510060200000,22.779057) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510060260000,22.868923) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510060320000,24.602215) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510060380000,23.205603) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510060440000,23.946648) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510060500000,25.129553) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510060560000,23.669048) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510060620000,25.279943) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510060680000,21.013235) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510060740000,25.55273) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510060800000,25.74339) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510060860000,21.540573) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510060920000,20.080067) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510060980000,20.169935) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510061040000,24.104778) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510061100000,22.506676) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510061160000,20.697273) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510061220000,24.632114) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510061280000,23.17161) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510061340000,21.57351) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510061400000,20.314493) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510061460000,23.698948) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510061520000,22.238443) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510061580000,20.640343) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510061640000,23.970716) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510061700000,24.060585) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510061760000,22.049692) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510061820000,25.846937) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510061880000,24.386433) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510061940000,23.127419) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510062000000,24.86071) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510062060000,25.464157) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510062120000,23.453266) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510062180000,25.388046) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510062240000,20.129093) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510062300000,24.53099) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510062360000,20.264282) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510062420000,22.005314) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510062480000,20.746298) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510062540000,22.341993) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510062600000,20.881489) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510062660000,21.622534) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510062720000,23.812885) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510062780000,22.214783) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510062840000,22.95583) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510062900000,24.689121) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510062960000,23.430105) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510063020000,21.832003) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510063080000,25.216457) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510063140000,25.306326) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510063200000,23.845821) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510063260000,21.844555) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510063320000,20.38405) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510063380000,24.373158) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510063440000,22.308) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510063500000,20.911388) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510063560000,25.450884) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510063620000,23.99038) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510063680000,21.374834) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510063740000,25.172264) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510063800000,25.262133) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510063860000,23.196976) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510063920000,21.736471) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510063980000,20.138369) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510064040000,23.724312) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510064100000,22.263807) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510064160000,20.803303) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510064220000,22.398998) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510064280000,23.341534) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510064340000,21.33064) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510064400000,23.063932) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510064460000,23.667381) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510064520000,23.75725) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510064580000,25.69203) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510064640000,25.882689) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510064700000,24.284588) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510064760000,20.01788) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510064820000,25.56482) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510064880000,20.305866) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510064940000,21.901562) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510065000000,25.890669) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510065060000,20.833204) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510065120000,22.566496) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510065180000,20.968393) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510065240000,21.058262) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510065300000,24.442717) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510065360000,23.1837) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510065420000,21.585598) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510065480000,25.520443) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510065540000,24.059937) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510065600000,22.250534) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510065660000,20.04778) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510065720000,24.587275) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510065780000,23.12677) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510065840000,21.061798) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510065900000,24.859043) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510065960000,24.398523) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510066020000,22.938019) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510066080000,20.87286) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510066140000,25.476248) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510066200000,24.015743) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510066260000,21.400198) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510066320000,25.939693) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510066380000,24.543081) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510066440000,20.276373) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510066500000,21.01742) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510066560000,25.006527) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510066620000,20.80371) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510066680000,23.095129) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510066740000,21.634624) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510066800000,23.367916) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510066860000,21.769814) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510066920000,22.07261) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510066980000,23.805902) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510067040000,22.345398) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510067100000,22.948847) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510067160000,24.883629) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510067220000,22.872736) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510067280000,23.613781) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510067340000,25.209476) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510067400000,25.299343) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510067460000,24.040329) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510067520000,21.424784) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510067580000,25.826681) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510067640000,24.366177) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510067700000,22.502508) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510067760000,21.042004) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510067820000,25.443901) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510067880000,22.828358) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510067940000,20.763386) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510068000000,25.30288) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510068060000,25.25515) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510068120000,23.189993) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510068180000,21.1791) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510068240000,25.920086) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510068300000,23.71733) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510068360000,22.256826) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510068420000,20.796322) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510068480000,24.382265) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510068540000,22.784164) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510068600000,21.32366) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510068660000,23.056952) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510068720000,23.999487) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510068780000,23.951757) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510068840000,25.13466) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510068900000,25.875708) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510068960000,24.415203) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510069020000,21.018343) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510069080000,25.557838) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510069140000,25.748497) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510069200000,21.481789) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510069260000,20.085176) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510069320000,20.826221) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510069380000,22.559513) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510069440000,20.548622) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510069500000,22.702442) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510069560000,24.637224) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510069620000,23.17672) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510069680000,21.716215) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510069740000,25.51346) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510069800000,23.704056) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510069860000,22.243551) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510069920000,20.178394) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510069980000,24.580292) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510070040000,22.51532) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510070100000,25.899776) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510070160000,24.43927) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510070220000,24.39154) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510070280000,22.931036) +insert into root.sgcc.wf03.wt01(timestamp,temperature) values(1510070340000,21.067368) diff --git a/docs/Documentation/QuickStart.md b/docs/Documentation/QuickStart.md new file mode 100755 index 0000000000000..e2556f1ad1b49 --- /dev/null +++ b/docs/Documentation/QuickStart.md @@ -0,0 +1,324 @@ + + +- [Quick Start](#quick-start) + - [Prerequisites](#prerequisites) + - [Installation](#installation) + - [Installation from source code](#installation-from-source-code) + - [Configure](#configure) + - [Start](#start) + - [Start Server](#start-server) + - [Start Client](#start-client) + - [Have a try](#have-a-try) + - [Stop Server](#stop-server) + + +# Quick Start + +This short guide will walk you through the basic process of using IoTDB. For a more-complete guide, please visit our website’s documents. + +## Prerequisites + +To use IoTDB, you need to have: + +1. Java >= 1.8 (Please make sure the environment path has been set) +2. Maven >= 3.0 (If you want to compile and install IoTDB from source code) +3. TsFile >= 0.7.0 (TsFile Github page: [https://github.com/apache/incubator-iotdb/tree/master/tsfile](https://github.com/apache/incubator-iotdb/tree/master/tsfile)) +4. IoTDB-JDBC >= 0.7.0 (IoTDB-JDBC Github page: [https://github.com/apache/incubator-iotdb/tree/master/jdbc](https://github.com/apache/incubator-iotdb/tree/master/jdbc)) + +TODO: TsFile and IoTDB-JDBC dependencies will be removed after the project reconstruct. + +## Installation + +IoTDB provides you two installation methods, you can refer to the following suggestions, choose one of them: + + +* Installation from source code. If you need to modify the code yourself, you can use this method. +* Installation from binary files. Download the binary files from the official website. This is the recommended method, in which you will get a binary released package which is out-of-the-box.(Comming Soon...) + +Here in the Quick Start part, we give a brief introduction of using source code to install IoTDB. For further information, please refer to Chapter 5 of this document. + +### Installation from source code + +Use git to get IoTDB source code: + +``` +Shell > git clone https://github.com/apache/incubator-iotdb.git +``` + +Or: + +``` +Shell > git clone git@github.com:apache/incubator-iotdb.git +``` + +Now suppose your directory is like this: + +``` +> pwd +/User/workspace/incubator-iotdb + +> ls -l +incubator-iotdb/ <-- root path +| ++- iotdb/ +| ++- jdbc/ +| ++- tsile/ +| +... +| ++- pom.xml +``` + +Let $IOTDB_HOME = /User/workspace/incubator-iotdb/iotdb/iotdb/ + +If you are not the first time that building IoTDB, remember deleting the following files: + +``` +> rm -rf $IOTDB_HOME/data/ +> rm -rf $IOTDB_HOME/lib/ +``` + +Then under the root path of incubator-iotdb, you can build IoTDB using Maven: + +``` +> pwd +/User/workspace/incubator-iotdb + +> mvn clean package -pl iotdb -am -Dmaven.test.skip=true +``` + +If successful, you will see the the following text in the terminal: + +``` +[INFO] ------------------------------------------------------------------------ +[INFO] Reactor Summary: +[INFO] +[INFO] IoTDB Root ......................................... SUCCESS [ 7.020 s] +[INFO] TsFile ............................................. SUCCESS [ 10.486 s] +[INFO] Service-rpc ........................................ SUCCESS [ 3.717 s] +[INFO] IoTDB Jdbc ......................................... SUCCESS [ 3.076 s] +[INFO] IoTDB .............................................. SUCCESS [ 8.258 s] +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ +``` + +Otherwise, you may need to check the error statements and fix the problems. + +After building, the IoTDB project will be at the subfolder named iotdb. The folder will include the following contents: + +``` +$IOTDB_HOME/ +| ++- bin/ <-- script files +| ++- conf/ <-- configuration files +| ++- lib/ <-- project dependencies +``` + + + +## Configure + +Before starting to use IoTDB, you need to config the configuration files first. For your convenience, we have already set the default config in the files. + +In total, we provide users three kinds of configurations module: + +* environment config module (iotdb-env.`sh`(Linux or OSX), iotdb-env.`bat`(Windows)) +* system config module (tsfile-format.properties, iotdb-engine.properties) +* log config module (logback.xml) + +The configuration files of the three configuration items are located in the IoTDB installation directory: $IOTDB_HOME/conf folder. For more, you are advised to check Chapter 5 to give you the details. + +## Start + +### Start Server + +After that we start the server. Running the startup script: + +``` +# Unix/OS X +> $IOTDB_HOME/bin/start-server.sh + +# Windows +> $IOTDB_HOME\bin\start-server.bat +``` + +### Start Client + +Now let's trying to read and write some data from IoTDB using our Client. To start the client, you need to explicit the server's IP and PORT as well as the USER_NAME and PASSWORD. + +``` +# Unix/OS X +> $IOTDB_HOME/bin/start-client.sh -h -p -u + +# Windows +> $IOTDB_HOME\bin\start-client.bat -h -p -u +``` + +> NOTE: In the system, we set a default user in IoTDB named 'root'. The default password for 'root' is 'root'. You can use this default user if you are making the first try or you didn't create users by yourself. + +The command line client is interactive so if everything is ready you should see the welcome logo and statements: + +``` + _____ _________ ______ ______ +|_ _| | _ _ ||_ _ `.|_ _ \ + | | .--.|_/ | | \_| | | `. \ | |_) | + | | / .'`\ \ | | | | | | | __'. + _| |_| \__. | _| |_ _| |_.' /_| |__) | +|_____|'.__.' |_____| |______.'|_______/ version x.x.x + + +IoTDB> login successfully +IoTDB> +``` + + +### Have a try + +Now, you can use IoTDB SQL to operate IoTDB, and when you’ve had enough fun, you can input 'quit' or 'exit' command to leave the client. + +But lets try something slightly more interesting: + +``` +IoTDB> SET STORAGE GROUP TO root.ln +execute successfully. +IoTDB> CREATE TIMESERIES root.ln.wf01.wt01.status WITH DATATYPE=BOOLEAN, ENCODING=PLAIN +execute successfully. +``` +Till now, we have already create a table called root.vehicle and add a colomn called d0.s0 in the table. Let's take a look at what we have done by 'SHOW TIMESERIES' command. + +``` +IoTDB> SHOW TIMESERIES +=== Timeseries Tree === + +root:{ + ln:{ + wf01:{ + wt01:{ + status:{ + DataType: BOOLEAN, + Encoding: PLAIN, + args: {}, + StorageGroup: root.ln + } + } + } + } +} +``` + +For a further try, create a timeseries again and use SHOW TIMESERIES to check result. + +``` +IoTDB> CREATE TIMESERIES root.ln.wf01.wt01.temperature WITH DATATYPE=FLOAT, ENCODING=RLE +IoTDB> SHOW TIMESERIES +=== Timeseries Tree === + +root:{ + ln:{ + wf01:{ + wt01:{ + status:{ + DataType: BOOLEAN, + Encoding: PLAIN, + args: {}, + StorageGroup: root.ln + }, + temperature:{ + DataType: FLOAT, + Encoding: RLE, + args: {}, + StorageGroup: root.ln + } + } + } + } +} +``` +Now, for your conveniect, SHOW TIMESERIES clause also supports extention syntax, the pattern is (for further details, check Chapter x): + +``` +SHOW TIMESERIES +``` + +Here is the example: + +``` +IoTDB> SHOW TIMESERIES root.ln.wf01.wt01 ++------------------------------+--------------+--------+--------+ +| Timeseries| Storage Group|DataType|Encoding| ++------------------------------+--------------+--------+--------+ +| root.ln.wf01.wt01.status| root.ln| BOOLEAN| PLAIN| +| root.ln.wf01.wt01.temperature| root.ln| FLOAT| RLE| ++------------------------------+--------------+--------+--------+ +Total timeseries number = 2 +Execute successfully. +``` +We can also use SHOW STORAGE GROUP to check created storage group: + +``` +IoTDB> show storage group ++-----------------------------------+ +| Storage Group| ++-----------------------------------+ +| root.ln| ++-----------------------------------+ +Total storage group number = 1 +Execute successfully. +It costs 0.006s +``` + + +Insert timeseries data is the basic operation of IoTDB, you can use 'INSERT' command to finish this: + +``` +IoTDB> INSERT INTO root.ln.wf01.wt01(timestamp,status) values(100,true); +execute successfully. +IoTDB> INSERT INTO root.ln.wf01.wt01(timestamp,status,temperature) values(200,false,20.71)
execute successfully. +``` +The data we've just inserted displays like this: + +``` +IoTDB> SELECT status FROM root.ln.wf01.wt01 ++-----------------------+------------------------+ +| Time|root.ln.wf01.wt01.status| ++-----------------------+------------------------+ +|1970-01-01T08:00:00.100| true| +|1970-01-01T08:00:00.200| false| ++-----------------------+------------------------+ +record number = 1 +execute successfully. +``` + +We can also query several timeseries data at once like this: + +``` +IoTDB> SELECT * FROM root.ln.wf01.wt01 ++-----------------------+--------------------------+-----------------------------+ +| Time| root.ln.wf01.wt01.status|root.ln.wf01.wt01.temperature| ++-----------------------+--------------------------+-----------------------------+ +|1970-01-01T08:00:00.100| true| null| +|1970-01-01T08:00:00.200| false| 20.71| ++-----------------------+--------------------------+-----------------------------+ +``` + +If your session looks similar to what’s above, congrats, your IoTDB is operational! + +For more on what commands are supported by IoTDB SQL, see Chapter xx. It will give you help. + +### Stop Server + +The server can be stopped with ctrl-C or the following script: + +``` +# Unix/ OS X +> $IOTDB_HOME/bin/stop-server.sh + +# Windows +> $IOTDB_HOME\bin\stop-server.bat +``` + diff --git a/docs/Documentation/UserGuideV0.7.0/1-Overview.md b/docs/Documentation/UserGuideV0.7.0/1-Overview.md new file mode 100644 index 0000000000000..1c203c559b16b --- /dev/null +++ b/docs/Documentation/UserGuideV0.7.0/1-Overview.md @@ -0,0 +1,99 @@ + + +- [Chapter 1: Overview](#chapter-1-overview) + - [What is IoTDB](#what-is-iotdb) + - [Architecture](#architecture) + - [Scenario](#scenario) + - [Scenario 1](#scenario-1) + - [Scenario 2](#scenario-2) + - [Scenario 3](#scenario-3) + - [Scenario 4](#scenario-4) + - [Features](#features) + + +# Chapter 1: Overview + +## What is IoTDB + +IoTDB(Internet of Things Database) is an integrated data management engine designed for timeseries data, which can provide users specific services for data collection, storage and analysis. Due to its light weight structure, high performance and usable features together with its intense integration with Hadoop and Spark ecology, IoTDB meets the requirements of massive dataset storage, high-speed data input and complex data analysis in the IoT industrial field. + +## Architecture + +Besides IoTDB engine, we also developed several components to provide better IoT service. All components are referred to below as the IoTDB suite, and IoTDB refers specifically to the IoTDB engine. + +IoTDB suite can provide a series of functions in the real situation such as data collection, data writing, data storage, data query, data visualization and data analysis. Figure 1.1 shows the overall application architecture brought by all the components of the IoTDB suite. + + + +As shown in Figure 1.1, users can use JDBC to import timeseries data collected by sensor on the device to local/remote IoTDB. These timeseries data may be system state data (such as server load and CPU memory, etc.), message queue data, timeseries data from applications, or other timeseries data in the database. Users can also write the data directly to the TsFile (local or on HDFS). + +For the data written to IoTDB and local TsFile, users can use TsFileSync tool to synchronize the TsFile to the HDFS, thereby implementing data processing tasks such as abnormality detection and machine learning on the Hadoop or Spark data processing platform. The results of the analysis can be write back to TsFile in the same way. + +Also, IoTDB and TsFile provide client tools to meet the various needs of users in writing and viewing data in SQL form, script form and graphical form. + +## Scenario + +### Scenario 1 + +A company uses surface mount technology (SMT) to produce chips: it is necessary to first print solder paste on the joints of the chip, then place the components on the solder paste, and then melt the solder paste by heating and cool it. Finally, the components are soldered to the chip. + +The above process uses an automated production line. In order to ensure the quality of the product, after printing the solder paste, the quality of the solder paste printing needs to be evaluated by optical equipment. The volume (v), height (h), area (a), horizontal offset (px), and vertical offset (py) of the solder paste on each joint are measured by a three-dimensional solder paste printing (SPI) device. + +In order to improve the quality of the printing, it is necessary for the company to store the metrics of the solder joints on each chip for subsequent analysis based on these data. + +At this point, the data can be stored using TsFile component, TsFileSync tool, and Hadoop/Spark integration component in the IoTDB suite.That is, each time a new chip is printed, a data is written on the SPI device using the SDK, which ultimately forms a TsFile. Through the TsFileSync tool, the generated TsFile will be synchronized to the data center according to certain rules (such as daily) and analyzed by data analysts tools. + + + +In this scenario, only TsFile and TsFileSync are required to be deployed on a PC, and a Hadoop/Spark cluster is required. The schematic diagram is shown in Figure 1.2. Figure 1.3 shows the architecture at this time. + + + +### Scenario 2 + +A company has several wind turbines which are installed hundreds of sensors on each generator to collect information such as the working status of the generator and the wind speed in the working environment. + +In order to ensure the normal operation of the turbines and timely monitoring and analysis of the turbines, the company needs to collect these sensor data, perform partial calculation and analysis in the turbines working environment, and upload the original data collected to the data center. + + + +In this situation, IoTDB, TsFileSync tools, and Hadoop/Spark integration components in the IoTDB suite can be used. A PC needs to be deployed with IoTDB and TsFileSync tools installed to support reading and writing data, local computing and analysis, and uploading data to the data center. In addition, Hadoop/Spark clusters need to be deployed for data storage and analysis on the data center side. As shown in Figure 1.4. Figure 1.5 shows the architecture at this time. + + + +### Scenario 3 + +A factory has a variety of robotic equipment within the plant area. These robotic equipment have limited hardware and are difficult to carry complex applications. + +A variety of sensors are installed on each robotic device to monitor the robot's operating status, temperature, and other information. Due to the network environment of the factory, the robots inside the factory are all within the LAN of the factory and cannot connect to the external network. But there will be several servers in the factory that can connect directly to the external public network. + +In order to ensure that the data of the robot can be monitored and analyzed in time, the company needs to collect the information of these robot sensors, send them to the server that can connect to the external network, and then upload the original data information to the data center for complex calculation and analysis. + + + +At this point, IoTDB, IoTDB-CLI tools, TsFileSync tools, and Hadoop/Spark integration components in the IoTDB suite can be used. IoTDB-CLI tool is installed on the robot and each of them is connected to the LAN of the factory. When sensors generate real-time data, the data will be uploaded to the server in the factory. The IoTDB server and TsFileSync is installed on the server connected to the external network. Once triggered, the data on the server will be upload to the data center. In addition, Hadoop/Spark clusters need to be deployed for data storage and analysis on the data center side. As shown in Figure 1.6. Figure 1.7 shows the architecture at this time. + + + +### Scenario 4 + +A car company installed sensors on its cars to collect monitoring information such as the driving status of the vehicle. These automotive devices have limited hardware configurations and are difficult to carry complex applications. Cars with sensors can be connected to each other or send data via narrow-band IoT. + +In order to receive the IoT data collected by the car sensor in real time, the company needs to send the sensor data to the data center in real time through the narrowband IoT while the vehicle is running. Thus, they can perform complex calculations and analysis on the server in the data center. + +At this point, IoTDB, IoTDB-CLI, and Hadoop/Spark integration components in the IoTDB suite can be used. IoTDB-CLI tool is installed on each car and use IoTDB-JDBC tool to send data directly back to the server in the data center. + +In addition, Hadoop/Spark clusters need to be deployed for data storage and analysis on the data center side. As shown in Figure 1.8. + + + +## Features + + +* Flexible deployment. IoTDB provides users one-click installation tool on the cloud, once-decompressed-used terminal tool and the bridge tool between cloud platform and terminal tool (Data Synchronization Tool). +* Low cost on hardware. IoTDB can reach a high compression ratio of disk storage (For one billion data storage, hard drive cost less than $0.23) +* Efficient directory structure. IoTDB supports efficient oganization for complex timeseries data structure from intelligent networking devices, oganization for timeseries data from devices of the same type, fuzzy searching strategy for massive and complex directory of timeseries data. +* High-throughput read and write. IoTDB supports millions of low-power devices' strong connection data access, high-speed data read and write for intelligent networking devices and mixed devices mentioned above. +* Rich query semantics. IoTDB supports time alignment for timeseries data accross devices and sensors, computation in timeseries field (frequency domain transformation) and rich aggregation function support in time dimension. +* Easy to get start. IoTDB supports SQL-Like language, JDBC standard API and import/export tools which is easy to use. +* Intense integration with Open Source Ecosystem. IoTDB supports Hadoop, Spark, etc. analysis ecosystems and Grafana visualization tool. diff --git a/docs/Documentation/UserGuideV0.7.0/2-Concept.md b/docs/Documentation/UserGuideV0.7.0/2-Concept.md new file mode 100644 index 0000000000000..bc2f0a6877dd5 --- /dev/null +++ b/docs/Documentation/UserGuideV0.7.0/2-Concept.md @@ -0,0 +1,226 @@ + + +- [Chapter 2: Concept](#chapter-2-concept) + - [Key Concepts and Terminology](#key-concepts-and-terminology) + - [Data Type](#data-type) + - [Encoding](#encoding) + - [Compression](#compression) + + +# Chapter 2: Concept +## Key Concepts and Terminology + +The following basic concepts are involved in IoTDB: + +* Device + +A devices is an installation equipped with sensors in real scenarios. In IoTDB, all sensors should have their corresponding devices. + +* Sensor + +A sensor is a detection equipment in an actual scene, which can sense the information to be measured, and can transform the sensed information into an electrical signal or other desired form of information output and send it to IoTDB. In IoTDB, all data and paths stored are organized in units of sensors. + +* Storage Group + +Storage groups are used to let users define how to organize and isolate different time series data on disk. Time series belonging to the same storage group will be continuously written to the same file in the corresponding folder. The file may be closed due to user commands or system policies, and hence the data coming next from these sensors will be stored in a new file in the same folder. Time series belonging to different storage groups are stored in different folders. + +Users can set any prefix path as a storage group. Provided that there are four time series `root.vehicle.d1.s1`, `root.vehicle.d1.s2`, `root.vehicle.d2.s1`, `root.vehicle.d2.s2`, two devices `d1` and `d2` under the path `root.vehicle` may belong to the same owner or the same manufacturer, so d1 and d2 are closely related. At this point, the prefix path root.vehicle can be designated as a storage group, which will enable IoTDB to store all devices under it in the same folder. Newly added devices under `root.vehicle` will also belong to this storage group. + +> Note: A full path (`root.vehicle.d1.s1` as in the above example) is not allowed to be set as a storage group. + +Setting a reasonable number of storage groups can lead to performance gains: there is neither the slowdown of the system due to frequent switching of IO (which will also take up a lot of memory and result in frequent memory-file switching) caused by too many storage files (or folders), nor the block of write commands caused by too few storage files (or folders) (which reduces concurrency). + +Users should balance the storage group settings of storage files according to their own data size and usage scenarios to achieve better system performance. (There will be officially provided storage group scale and performance test reports in the future). + +> Note: The prefix of a time series must belong to a storage group. Before creating a time series, the user must set which storage group the series belongs to. Only the time series whose storage group is set can be persisted to disk. + +Once a prefix path is set as a storage group, the storage group settings cannot be changed. + +After a storage group is set, all parent and child layers of the corresponding prefix path are not allowed to be set up again (for example, after `root.ln` is set as the storage group, the root layer and `root.ln.wf01` are not allowed to be set as storage groups). + +* Path + +In IoTDB, a path is an expression that conforms to the following constraints: + +``` +path: LayerName (DOT LayerName)+ +LayerName: Identifier | STAR +``` + +Among them, STAR is "*" and DOT is ".". + +We call the middle part of a path between two "." as a layer, and thus `root.A.B.C` is a path with four layers. + +It is worth noting that in the path, root is a reserved character, which is only allowed to appear at the beginning of the time series mentioned below. If root appears in other layers, it cannot be parsed and an error is reported. + +* Timeseries Path + +The timeseries path is the core concept in IoTDB. A timeseries path can be thought of as the complete path of a sensor that produces the time series data. All timeseries paths in IoTDB must start with root and end with the sensor. A timeseries path can also be called a full path. + +For example, if device1 of the vehicle type has a sensor named sensor1, its timeseries path can be expressed as: `root.vehicle.device1.sensor1`. + +> Note: The layer of timeseries paths supported by the current IoTDB must be greater than or equal to four (it will be changed to two in the future). + +* Prefix Path + +The prefix path refers to the path where the prefix of a timeseries path is located. A prefix path contains all timeseries paths prefixed by the path. For example, suppose that we have three sensors: `root.vehicle.device1.sensor1`, `root.vehicle.device1.sensor2`, `root.vehicle.device2.sensor1`, the prefix path `root.vehicle.device1` contains two timeseries paths `root.vehicle.device1.sensor1` and `root.vehicle.device1.sensor2` while `root.vehicle.device2.sensor1` is excluded. + +* Path With Star + +In order to make it easier and faster to express multiple timeseries paths or prefix paths, IoTDB provides users with the path pith star. `*` can appear in any layer of the path. According to the position where `*` appears, the path with star can be divided into two types: + +`*` appears at the end of the path; + +`*` appears in the middle of the path; + +When `*` appears at the end of the path, it represents (`*`)+, which is one or more layers of `*`. For example, `root.vehicle.device1.*` represents all paths prefixed by `root.vehicle.device1` with layers greater than or equal to 4, like `root.vehicle.device1.*`, `root.vehicle.device1.*.*`, `root.vehicle.device1.*.*.*`, etc. + +When `*` appears in the middle of the path, it represents `*` itself, i.e., a layer. For example, `root.vehicle.*.sensor1` represents a 4-layer path which is prefixed with `root.vehicle` and suffixed with `sensor1`. + +> Note1: `*` cannot be placed at the beginning of the path. + +> Note2: A path with `*` at the end has the same meaning as a prefix path, e.g., `root.vehicle.*` and `root.vehicle` is the same. + +* Timestamp + +The timestamp is the time point at which a data arrives. IoTDB timestamps are divided into two types: LONG and DATETIME (including DATETIME-INPUT and DATETIME-DISPLAY). When a user enters a timestamp, he can use a LONG type timestamp or a DATETIME-INPUT type timestamp, where the support format of the DATETIME-INPUT type timestamp is shown in Table 2-1. + +
**Table 2-1 Support format of DATETIME-INPUT type timestamp** + +|format| +|:---:| +|yyyy-MM-dd HH:mm:ss| +|yyyy/MM/dd HH:mm:ss| +|yyyy.MM.dd HH:mm:ss| +|yyyy-MM-dd'T'HH:mm:ss| +|yyyy/MM/dd'T'HH:mm:ss| +|yyyy.MM.dd'T'HH:mm:ss| +|yyyy-MM-dd HH:mm:ssZZ| +|yyyy/MM/dd HH:mm:ssZZ| +|yyyy.MM.dd HH:mm:ssZZ| +|yyyy-MM-dd'T'HH:mm:ssZZ| +|yyyy/MM/dd'T'HH:mm:ssZZ| +|yyyy.MM.dd'T'HH:mm:ssZZ| +|yyyy/MM/dd HH:mm:ss.SSS| +|yyyy-MM-dd HH:mm:ss.SSS| +|yyyy.MM.dd HH:mm:ss.SSS| +|yyyy/MM/dd'T'HH:mm:ss.SSS| +|yyyy-MM-dd'T'HH:mm:ss.SSS| +|yyyy.MM.dd'T'HH:mm:ss.SSS| +|yyyy-MM-dd HH:mm:ss.SSSZZ| +|yyyy/MM/dd HH:mm:ss.SSSZZ| +|yyyy.MM.dd HH:mm:ss.SSSZZ| +|yyyy-MM-dd'T'HH:mm:ss.SSSZZ| +|yyyy/MM/dd'T'HH:mm:ss.SSSZZ| +|yyyy.MM.dd'T'HH:mm:ss.SSSZZ| +|ISO8601 standard time format| + +
+ +IoTDB can support LONG types and DATETIME-DISPLAY types when displaying timestamps. The DATETIME-DISPLAY type can support user-defined time formats. The syntax of the custom time format is shown in Table 2-2. + +
**Table 2-2 The syntax of the custom time format** + +|Symbol|Meaning|Presentation|Examples| +|:---:|:---:|:---:|:---:| +|G|era|era|era| +|C|century of era (>=0)| number| 20| +| Y |year of era (>=0)| year| 1996| +||||| +| x |weekyear| year| 1996| +| w |week of weekyear| number |27| +| e |day of week |number| 2| +| E |day of week |text |Tuesday; Tue| +||||| +| y| year| year| 1996| +| D |day of year |number| 189| +| M |month of year |month| July; Jul; 07| +| d |day of month |number| 10| +||||| +| a |halfday of day |text |PM| +| K |hour of halfday (0~11) |number| 0| +| h |clockhour of halfday (1~12) |number| 12| +||||| +| H |hour of day (0~23)| number| 0| +| k |clockhour of day (1~24) |number| 24| +| m |minute of hour| number| 30| +| s |second of minute| number| 55| +| S |fraction of second |millis| 978| +||||| +| z |time zone |text |Pacific Standard Time; PST| +| Z |time zone offset/id| zone| -0800; -08:00; America/Los_Angeles| +||||| +| '| escape for text |delimiter|  | +| ''| single quote| literal |'| + +
+ +* Value + +The value of a time series is actually the value sent by a sensor to IoTDB. This value can be stored by IoTDB according to the data type. At the same time, users can select the compression mode and the corresponding encoding mode according to the data type of this value. See [Data Type](需要连接到具体的网页链接Chapter2) and [Encoding](需要连接到具体的网页链接Chapter2) of this document for details on data type and corresponding encoding. + +* Point + +A data point is made up of a timestamp value pair (timestamp, value). + +* Column + +A column of data contains all values belonging to a time series and the timestamps corresponding to these values. When there are multiple columns of data, IoTDB merges the timestamps into multiple < timestamp-value > pairs (timestamp, value, value,...). + +## Data Type +IoTDB supports six data types in total: BOOLEAN (Boolean), INT32 (Integer), INT64 (Long Integer), FLOAT (Single Precision Floating Point), DOUBLE (Double Precision Floating Point), TEXT (String). + +The time series of FLOAT and DOUBLE type can specify (MAX\_POINT\_NUMBER, see [this page](需要连接到具体的网页链接Chapter5CreateTimeseriesStatement) for more information on how to specify), which is the number of digits after the decimal point of the floating point number, if the encoding method is [RLE](需要连接到具体的网页链接Chapter2RLE) or [TS\_2DIFF](需要连接到具体的网页链接Chapter2TS2DIFF) (Refer to [Create Timeseries Statement](需要连接到具体的网页链接) for more information on how to specify). If MAX\_POINT\_NUMBER is not specified, the system will use [float\_precision](需要连接到具体的网页链接chapter4float\_precision) in the configuration file "tsfile-format.properties" for configuration for the configuration method. + +When the data type of data input by the user in the system does not correspond to the data type of the time series, the system will report type errors. As shown below, the second-order difference encoding does not support the Boolean type: + +``` +IoTDB> create timeseries root.ln.wf02.wt02.status WITH DATATYPE=BOOLEAN, ENCODING=TS_2DIFF +error: encoding TS_2DIFF does not support BOOLEAN +``` + +## Encoding +In order to improve the efficiency of data storage, it is necessary to encode data during data writing, thereby reducing the amount of disk space used. In the process of writing and reading data, the amount of data involved in the I/O operations can be reduced to improve performance. IoTDB supports four encoding methods for different types of data: + +* PLAIN + +PLAIN encoding, the default encoding mode, i.e, no encoding, supports multiple data types. It has high compression and decompression efficiency while suffering from low space storage efficiency. + +* TS_2DIFF + +Second-order differential encoding is more suitable for encoding monotonically increasing or decreasing sequence data, and is not recommended for sequence data with large fluctuations. + +Second-order differential encoding can also be used to encode floating-point numbers, but it is necessary to specify reserved decimal digits (MAX\_POINT\_NUMBER, see [this page](需要连接到具体的网页链接Chapter5CreateTimeseriesStatement) for more information on how to specify) when creating time series. It is more suitable for storing sequence data where floating-point values appear continuously, monotonously increase or decrease, and it is not suitable for storing sequence data with high precision requirements after the decimal point or with large fluctuations. + +* RLE + +Run-length encoding is more suitable for storing sequence with continuous integer values, and is not recommended for sequence data with most of the time different values. + +Run-length encoding can also be used to encode floating-point numbers, but it is necessary to specify reserved decimal digits (MAX\_POINT\_NUMBER, see [this page](需要连接到具体的网页链接Chapter5CreateTimeseriesStatement) for more information on how to specify) when creating time series. It is more suitable for storing sequence data where floating-point values appear continuously, monotonously increase or decrease, and it is not suitable for storing sequence data with high precision requirements after the decimal point or with large fluctuations. + +* GORILLA + +GORILLA encoding is more suitable for floating-point sequence with similar values and is not recommended for sequence data with large fluctuations. + +* Correspondence between data type and encoding + +The four encodings described in the previous sections are applicable to different data types. If the correspondence is wrong, the time series cannot be created correctly. The correspondence between the data type and its supported encodings is summarized in Table 2-3. + +
**Table 2-3 The correspondence between the data type and its supported encodings** + +|Data Type |Supported Encoding| +|:---:|:---:| +|BOOLEAN| PLAIN, RLE| +|INT32 |PLAIN, RLE, TS_2DIFF| +|INT64 |PLAIN, RLE, TS_2DIFF| +|FLOAT |PLAIN, RLE, TS_2DIFF, GORILLA| +|DOUBLE |PLAIN, RLE, TS_2DIFF, GORILLA| +|TEXT |PLAIN| + +
+ +## Compression + +When the time series is written and encoded as binary data according to the specified type, IoTDB compresses the data using compression technology to further improve space storage efficiency. Although both encoding and compression are designed to improve storage efficiency, encoding techniques are usually only available for specific data types (e.g., second-order differential encoding is only suitable for INT32 or INT64 data type, and storing floating-point numbers requires multiplying them by 10m to convert to integers), after which the data is converted to a binary stream. The compression method (SNAPPY) compresses the binary stream, so the use of the compression method is no longer limited by the data type. + +IoTDB allows you to specify the compression method of the column when creating a time series. IoTDB now supports two kinds of compression: UNCOMPRESSOR (no compression) and SNAPPY compression. The specified syntax for compression is detailed in [Create Timeseries Statement](需要连接到具体的网页链接Chapter5). \ No newline at end of file diff --git a/docs/Documentation/UserGuideV0.7.0/3-Operation Manual.md b/docs/Documentation/UserGuideV0.7.0/3-Operation Manual.md new file mode 100644 index 0000000000000..03a38714d890a --- /dev/null +++ b/docs/Documentation/UserGuideV0.7.0/3-Operation Manual.md @@ -0,0 +1,854 @@ + + +- [Chapter 3: Operation Manual](#chapter-3-operation-manual) + - [Sample Data](#sample-data) + - [Data Model Selection](#data-model-selection) + - [Storage Model Selection](#storage-model-selection) + - [Storage Group Creation](#storage-group-creation) + - [Show Storage Group](#show-storage-group) + - [Timeseries Creation](#timeseries-creation) + - [Show Timeseries](#show-timeseries) + - [Precautions](#precautions) + - [Data Import](#data-import) + - [Import Historical Data](#import-historical-data) + - [Import Real-time Data](#import-real-time-data) + - [Use of INSERT Statements](#use-of-insert-statements) + - [Error Handling of INSERT Statements](#error-handling-of-insert-statements) + - [Data Query](#data-query) + - [Time Slice Query](#time-slice-query) + - [Select a Column of Data Based on a Time Interval](#select-a-column-of-data-based-on-a-time-interval) + - [Select Multiple Columns of Data Based on a Time Interval](#select-multiple-columns-of-data-based-on-a-time-interval) + - [Select Multiple Columns of Data for the Same Device According to Multiple Time Intervals](#select-multiple-columns-of-data-for-the-same-device-according-to-multiple-time-intervals) + - [Choose Multiple Columns of Data for Different Devices According to Multiple Time Intervals](#choose-multiple-columns-of-data-for-different-devices-according-to-multiple-time-intervals) + - [Down-Frequency Aggregate Query](#down-frequency-aggregate-query) + - [Down-Frequency Aggregate Query without Specifying the Time Axis Origin Position](#down-frequency-aggregate-query-without-specifying-the-time-axis-origin-position) + - [Down-Frequency Aggregate Query Specifying the Time Axis Origin Position](#down-frequency-aggregate-query-specifying-the-time-axis-origin-position) + - [Down-Frequency Aggregate Query Specifying the Time Filtering Conditions](#down-frequency-aggregate-query-specifying-the-time-filtering-conditions) + - [Automated Fill](#automated-fill) + - [Fill Function](#fill-function) + - [Correspondence between Data Type and Fill Method](#correspondence-between-data-type-and-fill-method) + - [Row and Column Control over Query Results](#row-and-column-control-over-query-results) + - [Row Control over Query Results](#row-control-over-query-results) + - [Column Control over Query Results](#column-control-over-query-results) + - [Row and Column Control over Query Results](#row-and-column-control-over-query-results-1) + - [Error Handling](#error-handling) + - [Data Maintenance](#data-maintenance) + - [Data Update](#data-update) + - [Update Single Timeseries](#update-single-timeseries) + - [Data Deletion](#data-deletion) + - [Delete Single Timeseries](#delete-single-timeseries) + - [Delete Multiple Timeseries](#delete-multiple-timeseries) + - [Priviledge Management](#priviledge-management) + - [Basic Concepts](#basic-concepts) + - [User](#user) + - [Priviledge](#priviledge) + - [Role](#role) + - [Default User](#default-user) + - [Priviledge Management Operation Examples](#priviledge-management-operation-examples) + - [Create User](#create-user) + - [Grant User Priviledge](#grant-user-priviledge) + - [Other Instructions](#other-instructions) + - [The Relationship among Users, Priviledges and Roles](#the-relationship-among-users-priviledges-and-roles) + - [List of Priviledges Included in the System](#list-of-priviledges-included-in-the-system) + - [Username Restrictions](#username-restrictions) + - [Password Restrictions](#password-restrictions) + - [Role Name Restrictions](#role-name-restrictions) + + +# Chapter 3: Operation Manual + +## Sample Data + +To make this manual more practical, we will use a specific scenario example to illustrate how to operate IoTDB databases at all stages of use. See [this page](Material-SampleData) for a look. For your convenience, we also provide you with a sample data file in real scenario to import into the IoTDB system for trial and operation. + +Download file: [IoTDB-SampleData.txt](sampledata文件下载链接). + +## Data Model Selection + +Before importing data to IoTDB, we first select the appropriate data storage model according to the [sample data](Material-SampleData), and then create the storage group and timeseries using [SET STORAGE GROUP](Chapter5,setstoragegroup) statement and [CREATE TIMESERIES](Chapter5,createtimeseries) statement respectively. + +### Storage Model Selection +According to the data attribute layers described in [sample data](Material-SampleData), we can express it as an attribute hierarchy structure based on the coverage of attributes and the subordinate relationship between them, as shown in Figure 3.1 below. Its hierarchical relationship is: power group layer - power plant layer - device layer - sensor layer. ROOT is the root node, and each node of sensor layer is called a leaf node. In the process of using IoTDB, you can directly connect the attributes on the path from ROOT node to each leaf node with ".", thus forming the name of a timeseries in IoTDB. For example, The left-most path in Figure 3.1 can generate a timeseries named `ROOT.ln.wf01.wt01.status`. + +
+ +**Figure 3.1 Attribute hierarchy structure**
+ +After getting the name of the timeseries, we need to set up the storage group according to the actual scenario and scale of the data. Because in the scenario of this chapter data is usually arrived in the unit of groups (i.e., data may be across electric fields and devices), in order to avoid frequent switching of IO when writing data, and to meet the user's requirement of physical isolation of data in the unit of groups, we set the storage group at the group layer. + +### Storage Group Creation +After selecting the storage model, according to which we can set up the corresponding storage group. The SQL statements for creating storage groups are as follows: + +``` +IoTDB > set storage group to root.ln +IoTDB > set storage group to root.sgcc +``` + +We can thus create two storage groups using the above two SQL statements. + +It is worth noting that when the path itself or the parent/child layer of the path is already set as a storage group, the path is then not allowed to be set as a storage group. For example, it is not feasible to set `root.ln.wf01` as a storage group when there exist two storage groups `root.ln` and `root.sgcc`. The system will give the corresponding error prompt as shown below: + +``` +IoTDB> set storage group to root.ln.wf01 +error: The prefix of root.ln.wf01 has been set to the storage group. +``` + +### Show Storage Group +After the storage group is created, we can use the [SHOW STORAGE GROUP](Chapter5,showstoragegroup) statement to view all the storage groups. The SQL statement is as follows: + +``` +IoTDB> show storage group +``` + +The result is as follows: +
+ +### Timeseries Creation +According to the storage model selected before, we can create corresponding timeseries in the two storage groups respectively. The SQL statements for creating timeseries are as follows: + +``` +IoTDB > create timeseries root.ln.wf01.wt01.status with datatype=BOOLEAN,encoding=PLAIN +IoTDB > create timeseries root.ln.wf01.wt01.temperature with datatype=FLOAT,encoding=RLE +IoTDB > create timeseries root.ln.wf02.wt02.hardware with datatype=TEXT,encoding=PLAIN +IoTDB > create timeseries root.ln.wf02.wt02.status with datatype=BOOLEAN,encoding=PLAIN +IoTDB > create timeseries root.sgcc.wf03.wt01.status with datatype=BOOLEAN,encoding=PLAIN +IoTDB > create timeseries root.sgcc.wf03.wt01.temperature with datatype=FLOAT,encoding=RLE +``` + +It is worth noting that when in the CRATE TIMESERIES statement the encoding method conflicts with the data type, the system will give the corresponding error prompt as shown below: + +``` +IoTDB> create timeseries root.ln.wf02.wt02.status WITH DATATYPE=BOOLEAN, ENCODING=TS_2DIFF +error: encoding TS_2DIFF does not support BOOLEAN +``` + +Please refer to [Encoding](Chapter2,encoding) for correspondence between data type and encoding. + +### Show Timeseries + +Currently, IoTDB supports two ways of viewing timeseries: + +* SHOW TIMESERIES statement presents all timeseries information in JSON form +* SHOW TIMESERIES <`Path`> statement returns all timeseries information and the total number of timeseries under the given <`Path`> in tabular form. timeseries information includes: timeseries path, storage group it belongs to, data type, encoding type. <`Path`> needs to be a prefix path or a path with star or a timeseries path. SQL statements are as follows: + +``` +IoTDB> show timeseries root +IoTDB> show timeseries root.ln +``` + +The results are shown below respectly: + +
+
+ +It is worth noting that when the path queries does not exist, the system will give the corresponding error prompt as shown below: + +``` +IoTDB> show timeseries root.ln.wf03 +Msg: Failed to fetch timeseries root.ln.wf03's metadata because: Timeseries does not exist. +``` + +### Precautions + +Version 0.7.0 imposes some limitations on the scale of data that users can operate: + +Limit 1: Assuming that the JVM memory allocated to IoTDB at runtime is p and the user-defined size of data in memory written to disk ([group\_size\_in\_byte](Chap4group_size_in_byte)) is Q, then the number of storage groups should not exceed p/q. + +Limit 2: The number of timeseries should not exceed the ratio of JVM memory allocated to IoTDB at run time to 20KB. + +## Data Import +### Import Historical Data + +This feature is not supported in version 0.7.0. + +### Import Real-time Data + +IoTDB provides users with a variety of ways to insert real-time data, such as directly inputting [INSERT SQL statement](chapter5.InsertRecordStatement) in [Cli/Shell tools](cli-page), or using [Java JDBC](Java-api-page,commingsoon) to perform single or batch execution of [INSERT SQL statement](chapter5.InsertRecordStatement). + +This section mainly introduces the use of [INSERT SQL statement](chapter5.InsertRecordStatement) for real-time data import in the scenario. See Section 7.1.3.1 for a detailed syntax of [INSERT SQL statement](chapter5.InsertRecordStatement). + +#### Use of INSERT Statements +The [INSERT SQL statement](chapter5.InsertRecordStatement) statement can be used to insert data into one or more specified timeseries that have been created. For each point of data inserted, it consists of a [timestamp](chap2,timestamp) and a sensor acquisition value of a numerical type (see [Data Type](Chapter2datatype)). + +In the scenario of this section, take two timeseries `root.ln.wf02.wt02.status` and `root.ln.wf02.wt02.hardware` as an example, and their data types are BOOLEAN and TEXT, respectively. + +The sample code for single column data insertion is as follows: +``` +IoTDB > insert into root.ln.wf02.wt02(timestamp,status) values(1,true) +IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1, "v1") +``` + +The above example code inserts the long integer timestamp and the value "true" into the timeseries `root.ln.wf02.wt02.status` and inserts the long integer timestamp and the value "v1" into the timeseries `root.ln.wf02.wt02.hardware`. When the execution is successful, a prompt "execute successfully" will appear to indicate that the data insertion has been completed. + +> Note: In IoTDB, TEXT type data can be represented by single and double quotation marks. The insertion statement above uses double quotation marks for TEXT type data. The following example will use single quotation marks for TEXT type data. + +The INSERT statement can also support the insertion of multi-column data at the same time point. The sample code of inserting the values of the two timeseries at the same time point '2' is as follows: + +``` +IoTDB > insert into root.ln.wf02.wt02(timestamp, status, hardware) VALUES (2, false, 'v2') +``` + +After inserting the data, we can simply query the inserted data using the SELECT statement: + +``` +IoTDB > select * from root.ln.wf02 where time < 3 +``` + +The result is shown below. From the query results, it can be seen that the insertion statements of single column and multi column data are performed correctly. + +
+ +### Error Handling of INSERT Statements +If the user inserts data into a non-existent timeseries, for example, execute the following commands: + +``` +IoTDB > insert into root.ln.wf02.wt02(timestamp, temperature) values(1,"v1") +``` + +Because `root.ln.wf02.wt02. temperature` does not exist, the system will return the following ERROR information: + +``` +error: Timeseries root.ln.wf02.wt02.temperature does not exist. +``` +If the data type inserted by the user is inconsistent with the corresponding data type of the timeseries, for example, execute the following command: + +``` +IoTDB > insert into root.ln.wf02.wt02(timestamp,hardware) values(1,100) +``` +The system will return the following ERROR information: + +``` +error: The TEXT data type should be covered by " or ' +``` + +## Data Query +### Time Slice Query + +This chapter mainly introduces the relevant examples of time slice query using IoTDB SELECT statements. Detailed SQL syntax and usage specifications can be found in [SQL Documentation](Chpater5). You can also use the [Java JDBC](Java-api-page,commingsoon) standard interface to execute related queries. + +#### Select a Column of Data Based on a Time Interval + +The SQL statement is: + +``` +select temperature from root.ln.wf01.wt01 where time < 2017-11-01T00:08:00.000 +``` +which means: + +The selected device is ln group wf01 plant wt01 device; the selected timeseries is the temperature sensor (temperature). The SQL statement requires that all temperature sensor values before the time point of "2017-11-01T00:08:00.000" be selected. + +The execution result of this SQL statement is as follows: + +
+ +#### Select Multiple Columns of Data Based on a Time Interval + +The SQL statement is: + +``` +select status, temperature from root.ln.wf01.wt01 where time > 2017-11-01T00:05:00.000 and time < 2017-11-01T00:12:00.000; +``` +which means: + +The selected device is ln group wf01 plant wt01 device; the selected timeseries is "status" and "temperature". The SQL statement requires that the status and temperature sensor values between the time point of "2017-11-01T00:05:00.000" and "2017-11-01T00:12:00.000" be selected. + +The execution result of this SQL statement is as follows: +
+ +#### Select Multiple Columns of Data for the Same Device According to Multiple Time Intervals +IoTDB supports specifying multiple time interval conditions in a query. Users can combine time interval conditions at will according to their needs. For example, the SQL statement is: + +``` +select status,temperature from root.ln.wf01.wt01 where (time > 2017-11-01T00:05:00.000 and time < 2017-11-01T00:12:00.000) or (time >= 2017-11-01T16:35:00.000 and time <= 2017-11-01T16:37:00.000); +``` +which means: + +The selected device is ln group wf01 plant wt01 device; the selected timeseries is "status" and "temperature"; the statement specifies two different time intervals, namely "2017-11-01T00:05:00.000 to 2017-11-01T00:12:00.000" and "2017-11-01T16:35:00.000 to 2017-11-01T16:37:00.000". The SQL statement requires that the values of selected timeseries satisfying any time interval be selected. + +The execution result of this SQL statement is as follows: +
+ + +#### Choose Multiple Columns of Data for Different Devices According to Multiple Time Intervals +The system supports the selection of data in any column in a query, i.e., the selected columns can come from different devices. For example, the SQL statement is: + +``` +select wf01.wt01.status,wf02.wt02.hardware from root.ln where (time > 2017-11-01T00:05:00.000 and time < 2017-11-01T00:12:00.000) or (time >= 2017-11-01T16:35:00.000 and time <= 2017-11-01T16:37:00.000); +``` +which means: + +The selected timeseries are "the power supply status of ln group wf01 plant wt01 device" and "the hardware version of ln group wf02 plant wt02 device"; the statement specifies two different time intervals, namely "2017-11-01T00:05:00.000 to 2017-11-01T00:12:00.000" and "2017-11-01T16:35:00.000 to 2017-11-01T16:37:00.000". The SQL statement requires that the values of selected timeseries satisfying any time interval be selected. + +The execution result of this SQL statement is as follows: +
+ +### Down-Frequency Aggregate Query +This section mainly introduces the related examples of down-frequency aggregation query, using the [GROUP BY clause](Chap5-groupbystatement), which is used to partition the result set according to the user's given partitioning conditions and aggregate the partitioned result set. IoTDB supports partitioning result sets according to time intervals, and by default results are sorted by time in ascending order. You can also use the [Java JDBC](Java-api-page,commingsoon) standard interface to execute related queries. + +The GROUP BY statement provides users with three types of specified parameters: + +* Parameter 1: Time interval for dividing the time axis +* Parameter 2: Time axis origin position (optional) +* Parameter 3: The display window(s) (one or more) on the time axis + +The actual meanings of the three types of parameters are shown in Figure 3.2 below. Among them, the paramter 2 is optional. Next we will give three typical examples of frequency reduction aggregation: parameter 2 specified, parameter 2 not specified, and time filtering conditions specified. + +
+ +**Figure 3.2 The actual meanings of the three types of parameters**
+ +#### Down-Frequency Aggregate Query without Specifying the Time Axis Origin Position +The SQL statement is: + +``` +select count(status), max_value(temperature) from root.ln.wf01.wt01 group by (1d, [2017-11-01T00:00:00, 2017-11-07T23:00:00]); +``` +which means: + +Since the user does not specify the time axis origin position, the GROUP BY statement will by default set the origin at 0 (+0 time zone) on January 1, 1970. + +The first parameter of the GROUP BY statement above is the time interval for dividing the time axis. Taking this parameter (1d) as time interval and the default origin as the dividing origin, the time axis is divided into several continuous intervals, which are [0,1d], [1d, 2d], [2d, 3d], etc. + +The second parameter of the GROUP BY statement above is the display window paramter, which determines the final display range is [2017-11-01T00:00:00, 2017-11-07T23:00:00]. + +Then the system will use the time and value filtering condition in the WHERE clause and the second parameter of the GROUP BY statement as the data filtering condition to obtain the data satisfying the filtering condition (which in this case is the data in the range of [2017-11-01T00:00:00, 2017-11-07 T23:00:00]), and map these data to the previously segmented time axis (in this case there are mapped data in every 1-day period from 2017-11-01T00:00:00 to 2017-11-07T23:00:00:00). + +Since there is data for each time period in the result range to be displayed, the execution result of the SQL statement is shown below: + +
+ +#### Down-Frequency Aggregate Query Specifying the Time Axis Origin Position +The SQL statement is: + +``` +select count(status), max_value(temperature) from root.ln.wf01.wt01 group by (1d, 2017-11-03 00:00:00, [2017-11-01 00:00:00, 2017-11-07 23:00:00]); +``` + +which means: + +Since the user specifies the time axis origin position parameter as 2017-11-03 00:00:00, the GROUP BY statement will set the origin at 0 (system default time zone) on November 3, 2017. + +The first parameter of the GROUP BY statement above is the time interval for dividing the time axis. Taking this parameter (1d) as time interval and the speicified origin as the dividing origin, the time axis is divided into several continuous intervals, which are [2017-11-02T00:00:00, 2017-11-03T00:00:00], [2017-11-03T00:00:00, 2017-11-04T00:00:00], etc. + +The third parameter of the GROUP BY statement above is the display window paramter, which determines the final display range is [2017-11-01T00:00:00, 2017-11-07T23:00:00]. + +hen the system will use the time and value filtering condition in the WHERE clause and the second parameter of the GROUP BY statement as the data filtering condition to obtain the data satisfying the filtering condition (which in this case is the data in the range of [2017-11-01T00:00:00, 2017-11-07T23:00:00]), and map these data to the previously segmented time axis (in this case there are mapped data in every 1-day period from 2017-11-01T00:00:00 to 2017-11-07T23:00:00:00). + +Since there is data for each time period in the result range to be displayed, the execution result of the SQL statement is shown below: + +
+ +#### Down-Frequency Aggregate Query Specifying the Time Filtering Conditions +The SQL statement is: + +``` +select count(status), max_value(temperature) from root.ln.wf01.wt01 where time > 2017-11-03T06:00:00 and temperature > 20 group by(1h, [2017-11-03T00:00:00, 2017-11-03T23:00:00]); +``` +which means: + +Since the user does not specify the time axis origin position, the GROUP BY statement will by default set the origin at 0 (+0 time zone) on January 1, 1970. + +The first parameter of the GROUP BY statement above is the time interval for dividing the time axis. Taking this parameter (1d) as time interval and the default origin as the dividing origin, the time axis is divided into several continuous intervals, which are [0,1d], [1d, 2d], [2d, 3d], etc. + +The second parameter of the GROUP BY statement above is the display window paramter, which determines the final display range is [2017-11-03T00:00:00, 2017-11-03T23:00:00]. + +Then the system will use the time and value filtering condition in the WHERE clause and the second parameter of the GROUP BY statement as the data filtering condition to obtain the data satisfying the filtering condition (which in this case is the data in the range of (2017-11-03T06:00:00, 2017-11-03T23:00:00] and satisfying root.ln.wf01.wt01.temperature > 20), and map these data to the previously segmented time axis (in this case there are mapped data in every 1-day period from 2017-11-03T00:06:00 to 2017-11-03T23:00:00). + +Since there is no data in the result range [2017-11-03T00:00:00, 2017-11-03T00:06:00], the aggregation results of this segment will be null. There is data in all other time periods in the result range to be displayed. The execution result of the SQL statement is shown below: + +
+ +It is worth noting that the path after SELECT in GROUP BY statement must be aggregate function, otherwise the system will give the corresponding error prompt, as shown below: + +
+ +### Automated Fill +In the actual use of IoTDB, when doing the query operation of timeseries, situations where the value is null at some time points may appear, which will obstruct the further analysis by users. In order to better reflect the degree of data change, users expect missing values to be automatically filled. Therefore, the IoTDB system introduces the function of Automated Fill. + +Automated fill function refers to filling empty values according to the user's specified method and effective time range when performing timeseries queries for single or multiple columns. If the queried point's value is not null, the fill function will not work. + +> Note: In the current version 0.7.0, IoTDB provides users with two methods: Previous and Linear. The previous method fills blanks with previous value. The linear method fills blanks through linear fitting. And the fill function can only be used when performing point-in-time queries. + +#### Fill Function +* Previous Function + +When the value of the queried timestamp is null, the value of the previous timestamp is used to fill the blank. The formalized previous method is as follows (see Section 7.1.3.6 for detailed syntax): + +``` +select from where time = fill([previous, ], …) +``` + +Detailed descriptions of all parameters are given in Table 3-4. + +
**Table 3-4 Previous fill paramter list** + +|Parameter name (case insensitive)|Interpretation| +|:---|:---| +|path, prefixPath|query path; mandatory field| +|T|query timestamp (only one can be specified); mandatory field| +|data\_type|the type of data used by the fill method. Optional values are int32, int64, float, double, boolean, text; optional field| +|before\_range|represents the valid time range of the previous method. The previous method works when there are values in the [T-before\_range, T] range. When before\_range is not specified, before\_range takes the default value T; optional field| +
+ +Here we give an example of filling null values using the previous method. The SQL statement is as follows: + +``` +select temperature from root.sgcc.wf03.wt01 where time = 2017-11-01T16:37:50.000 fill(float[previous, 1m]) +``` +which means: + +Because the timeseries root.sgcc.wf03.wt01.temperature is null at 2017-11-01T16:37:50.000, the system uses the previous timestamp of 2017-11-01T16:37:50.000 (and the timestamp is in the [2017-11-01T16:36:50.000, 2017-11-01T16:37:50.000] time range) for fill and display. + +On the [sample data](Material-SampleData), the execution result of this statement is shown below: +
+ +It is worth noting that if there is no value in the specified valid time range, the system will not fill the null value, as shown below: +
+ +* Linear Method + +When the value of the queried timestamp is null, the value of the previous and the next timestamp is used to fill the blank. The formalized linear method is as follows: + +``` +select from where time = fill([linear, , ]…) +``` +Detailed descriptions of all parameters are given in Table 3-5. + +
**Table 3-5 Linear fill paramter list** + +|Parameter name (case insensitive)|Interpretation| +|:---|:---| +|path, prefixPath|query path; mandatory field| +|T|query timestamp (only one can be specified); mandatory field| +|data_type|the type of data used by the fill method. Optional values are int32, int64, float, double, boolean, text; optional field| +|before\_range, after\_range|represents the valid time range of the linear method. The previous method works when there are values in the [T-before\_range, T+after\_range] range. When before\_range and after\_range are not explicitly specified, both before\_range and after\_range default to infinity; optional field| +
+ +Here we give an example of filling null values using the linear method. The SQL statement is as follows: + +``` +select temperature from root.sgcc.wf03.wt01 where time = 2017-11-01T16:37:50.000 fill(float [linear, 1m, 1m]) +``` +which means: + +Because the timeseries root.sgcc.wf03.wt01.temperature is null at 2017-11-01T16:37:50.000, the system uses the previous timestamp 2017-11-01T16:37:00.000 (and the timestamp is in the [2017-11-01T16:36:50.000, 2017-11-01T16:37:50.000] time range) and its value 21.927326, the next timestamp 2017-11-01T16:39:00.000 (and the timestamp is in the [2017-11-01T16:36:50.000, 2017-11-01T16:37:50.000] time range) and its value 25.311783 to perform linear fitting calculation: 21.927326 + (25.311783-21.927326)/60s*50s = 24.747707 + +On the [sample data](Material-SampleData), the execution result of this statement is shown below: +
+ +#### Correspondence between Data Type and Fill Method +Data types and the supported fill methods are shown in Table 3-6. + +
**Table 3-6 Data types and the supported fill methods** + +|Data Type|Supported Fill Methods| +|:---|:---| +|boolean|previous| +|int32|previous, linear| +|int64|previous, linear| +|float|previous, linear| +|double|previous, linear| +|text|previous| +
+ +It is worth noting that IoTDB will give error prompts for fill methods that are not supported by data types, as shown below: + +
+ +When the fill method is not specified, each data type bears its own default fill methods and parameters. The corresponding relationship is shown in Table 3-7. + +
**Table 3-7 Default fill methods and parameters for various data types** + +|Data Type|Default Fill Methods and Parameters| +|:---|:---| +|boolean|previous, 0| +|int32|linear, 0, 0| +|int64|linear, 0, 0| +|float|linear, 0, 0| +|double|linear, 0, 0| +|text|previous, 0| +
+ +> Note: In version 0.7.0, at least one fill method should be specified in the Fill statement. + +### Row and Column Control over Query Results + +IoTDB provides [LIMIT/SLIMIT](Chpater5,LimitStatement) clause and [OFFSET/SOFFSET](Chpater5,LimitStatement) clause in order to make users have more control over query results. The use of LIMIT and SLIMIT clauses allows users to control the number of rows and columns of query results, and the use of OFFSET and SOFSET clauses allows users to set the starting position of the results for display. + +This chapter mainly introduces related examples of row and column control of query results. You can also use the [Java JDBC](Java-api-page,commingsoon) standard interface to execute queries. + +#### Row Control over Query Results +By using LIMIT and OFFSET clauses, users can control the query results in a row-related manner. We will demonstrate how to use LIMIT and OFFSET clauses through the following examples. + +* Example 1: basic LIMIT clause + +The SQL statement is: + +``` +select status, temperature from root.ln.wf01.wt01 limit 10 +``` +which means: + +The selected device is ln group wf01 plant wt01 device; the selected timeseries is "status" and "temperature". The SQL statement requires the first 10 rows of the query result be returned. + +The result is shown below: + +
+ + +* Example 2: LIMIT clause with OFFSET + +The SQL statement is: + +``` +select status, temperature from root.ln.wf01.wt01 limit 5 offset 3 +``` +which means: + +The selected device is ln group wf01 plant wt01 device; the selected timeseries is "status" and "temperature". The SQL statement requires rows 3 to 7 of the query result be returned (with the first row numbered as row 0). + +The result is shown below: + +
+ +* Example 3: LIMIT clause combined with WHERE clause + +The SQL statement is: + +``` +select status,temperature from root.ln.wf01.wt01 where time > 2017-11-01T00:05:00.000 and time< 2017-11-01T00:12:00.000 limit 2 offset 3 +``` +which means: + +The selected device is ln group wf01 plant wt01 device; the selected timeseries is "status" and "temperature". The SQL statement requires rows 3 to 4 of the status and temperature sensor values between the time point of "2017-11-01T00:05:00.000" and "2017-11-01T00:12:00.000" be returned (with the first row numbered as row 0). + +The result is shown below: + +
+ +* Example 4: LIMIT clause combined with GROUP BY clause + +The SQL statement is: + +``` +select count(status), max_value(temperature) from root.ln.wf01.wt01 group by (1d,[2017-11-01T00:00:00, 2017-11-07T23:00:00]) limit 5 offset 3 +``` +which means: + +The SQL statement clause requires rows 3 to 7 of the query result be returned (with the first row numbered as row 0). + +The result is shown below: + +
+ +It is worth noting that because the current FILL clause can only fill in the missing value of timeseries at a certain time point, that is to say, the execution result of FILL clause is exactly one line, so LIMIT and OFFSET are not expected to be used in combination with FILL clause, otherwise errors will be prompted. For example, executing the following SQL statement: + +``` +select temperature from root.sgcc.wf03.wt01 where time = 2017-11-01T16:37:50.000 fill(float[previous, 1m]) limit 10 +``` + +The SQL statement will not be executed and the corresponding error prompt is given as follows: + +
+ +#### Column Control over Query Results + +By using SLIMIT and SOFFSET clauses, users can control the query results in a column-related manner. We will demonstrate how to use SLIMIT and SOFFSET clauses through the following examples. + +* Example 1: basic SLIMIT clause + +The SQL statement is: + +``` +select * from root.ln.wf01.wt01 where time > 2017-11-01T00:05:00.000 and time < 2017-11-01T00:12:00.000 slimit 1 +``` +which means: + +The selected device is ln group wf01 plant wt01 device; the selected timeseries is the first column under this device, i.e., the power supply status. The SQL statement requires the status sensor values between the time point of "2017-11-01T00:05:00.000" and "2017-11-01T00:12:00.000" be selected. + +The result is shown below: + +
+ +* Example 2: SLIMIT clause with SOFFSET + +The SQL statement is: + +``` +select * from root.ln.wf01.wt01 +where time > 2017-11-01T00:05:00.000 and time < 2017-11-01T00:12:00.000 +slimit 1 soffset 1 +``` +which means: + +The selected device is ln group wf01 plant wt01 device; the selected timeseries is the second column under this device, i.e., the temperature. The SQL statement requires the temperature sensor values between the time point of "2017-11-01T00:05:00.000" and "2017-11-01T00:12:00.000" be selected. + +The result is shown below: + +
+ +* Example 3: SLIMIT clause combined with GROUP BY clause + +The SQL statement is: + +``` +select max_value(*) from root.ln.wf01.wt01 group by (1d, [2017-11-01T00:00:00, 2017-11-07T23:00:00]) slimit 1 soffset 1 +``` +which means: + +The selected device is ln group wf01 plant wt01 device; the selected timeseries is the second column under this device, i.e., the temperature. + +The result is shown below: + +
+ +* Example 4: SLIMIT clause combined with FILL clause + +The SQL statement is: + +``` +select * from root.sgcc.wf03.wt01 where time = 2017-11-01T16:37:50.000 fill(float[previous, 1m]) slimit 1 soffset 1 +``` +which means: + +The selected device is ln group wf01 plant wt01 device; the selected timeseries is the second column under this device, i.e., the temperature. + +The result is shown below: + +
+ +It is worth noting that SLIMIT clause is expected to be used in conjunction with star path or prefix path, and the system will prompt errors when SLIMIT clause is used in conjunction with complete path query. For example, executing the following SQL statement: + +``` +select status,temperature from root.ln.wf01.wt01 where time > 2017-11-01T00:05:00.000 and time < 2017-11-01T00:12:00.000 slimit 1 +``` + +The SQL statement will not be executed and the corresponding error prompt is given as follows: +
+ +#### Row and Column Control over Query Results + +In addition to row or column control over query results, IoTDB allows users to control both rows and columns of query results. Here is a complete example with both LIMIT clauses and SLIMIT clauses. + +The SQL statement is: + +``` +select * from root.ln.wf01.wt01 limit 10 offset 100 slimit 2 soffset 0 +``` +which means: + +The selected device is ln group wf01 plant wt01 device; the selected timeseries is columns 0 to 1 under this device (with the first column numbered as column 0). The SQL statement clause requires rows 100 to 109 of the query result be returned (with the first row numbered as row 0). + +The result is shown below: + +
+ +#### Error Handling + +When the parameter N/SN of LIMIT/SLIMIT exceeds the size of the result set, IoTDB will return all the results as expected. For example, the query result of the original SQL statement consists of six rows, and we select the first 100 rows through the LIMIT clause: + +``` +select status,temperature from root.ln.wf01.wt01 +where time > 2017-11-01T00:05:00.000 and time < 2017-11-01T00:12:00.000 +limit 100 +``` +The result is shown below: + +
+ +When the parameter N/SN of LIMIT/SLIMIT clause exceeds the allowable maximum value (N/SN is of type int32), the system will prompt errors. For example, executing the following SQL statement: + +``` +select status,temperature from root.ln.wf01.wt01 where time > 2017-11-01T00:05:00.000 and time < 2017-11-01T00:12:00.000 limit 1234567890123456789 +``` +The SQL statement will not be executed and the corresponding error prompt is given as follows: + +
+ +When the parameter N/SN of LIMIT/SLIMIT clause is not a positive intege, the system will prompt errors. For example, executing the following SQL statement: + +``` +select status,temperature from root.ln.wf01.wt01 where time > 2017-11-01T00:05:00.000 and time < 2017-11-01T00:12:00.000 limit 13.1 +``` + +The SQL statement will not be executed and the corresponding error prompt is given as follows: + +
+ +When the parameter OFFSET of LIMIT clause exceeds the size of the result set, IoTDB will return an empty result set. For example, executing the following SQL statement: + +``` +select status,temperature from root.ln.wf01.wt01 where time > 2017-11-01T00:05:00.000 and time < 2017-11-01T00:12:00.000 limit 2 offset 6 +``` +The result is shown below: +
+ +When the parameter SOFFSET of SLIMIT clause is not smaller than the number of available timeseries, the system will prompt errors. For example, executing the following SQL statement: + +``` +select * from root.ln.wf01.wt01 where time > 2017-11-01T00:05:00.000 and time < 2017-11-01T00:12:00.000 slimit 1 soffset 2 +``` +The SQL statement will not be executed and the corresponding error prompt is given as follows: +
+ +## Data Maintenance +### Data Update + +Users can use [UPDATE statements](Chap5,updatestatement) to update data over a period of time in a specified timeseries. When updating data, users can select a timeseries to be updated (version 0.7.0 does not support multiple timeseries updates) and specify a time point or period to be updated (version 0.7.0 must have time filtering conditions). + +In a JAVA programming environment, you can use the [Java JDBC](Java-api-page,commingsoon) to execute single or batch UPDATE statements. + +#### Update Single Timeseries +Taking the power supply status of ln group wf02 plant wt02 device as an example, there exists such a usage scenario: + +After data access and analysis, it is found that the power supply status from 2017-11-01 15:54:00 to 2017-11-01 16:00:00 is true, but the actual power supply status is abnormal. You need to update the status to false during this period. The SQL statement for this operation is: + +``` +update root.ln.wf02 SET wt02.status = false where time <=2017-11-01T16:00:00 and time >= 2017-11-01T15:54:00 +``` +It should be noted that when the updated data type does not match the actual data type, IoTDB will give the corresponding error prompt as shown below: + +``` +IoTDB> update root.ln.wf02 set wt02.status = 1205 where time < now() +error: The BOOLEAN data type should be true/TRUE or false/FALSE +``` +When the updated path does not exist, IoTDB will give the corresponding error prompt as shown below: + +``` +IoTDB> update root.ln.wf02 set wt02.sta = false where time < now() +error: do not select any existing path +``` +### Data Deletion + +Users can delete data that meet the deletion condition in the specified timeseries by using the [DELETE statement](Chap5,deletestatement). When deleting data, users can select one or more timeseries paths, prefix paths, or paths with star to delete data before a certain time (version 0.7.0 does not support the deletion of data within a closed time interval). + +In a JAVA programming environment, you can use the [Java JDBC](Java-api-page,commingsoon) to execute single or batch UPDATE statements. + +#### Delete Single Timeseries +Taking ln Group as an example, there exists such a usage scenario: + +The wf02 plant's wt02 device has many segments of errors in its power supply status before 2017-11-01 16:26:00, and the data cannot be analyzed correctly. The erroneous data affected the correlation analysis with other devices. At this point, the data before this time point needs to be deleted. The SQL statement for this operation is + +``` +delete from root.ln.wf02.wt02.status where time<=2017-11-01T16:26:00; +``` + +#### Delete Multiple Timeseries +When both the power supply status and hardware version of the ln group wf02 plant wt02 device before 2017-11-01 16:26:00 need to be deleted, the prefix path with broader meaning (see Section 3.1.6 of this manual) or the path with star can be used to delete the data. The SQL statement for this operation is: + +``` +delete from root.ln.wf02.wt02 where time <= 2017-11-01T16:26:00; +``` +or + +``` +delete from root.ln.wf02.wt02.* where time <= 2017-11-01T16:26:00; +``` +It should be noted that when the deleted path does not exist, IoTDB will give the corresponding error prompt as shown below: + +``` +IoTDB> delete from root.ln.wf03.wt02.status where time < now() +error: TimeSeries does not exist and cannot be delete data +``` + +## Priviledge Management +IoTDB provides users with priviledge management operations, so as to ensure data security. + +We will show you basic user priviledge management operations through the following specific examples. Detailed SQL syntax and usage details can be found in [Chapter5.SQL Documentation](chap5). At the same time, in the JAVA programming environment, you can use the [Java JDBC](Java-api-page,commingsoon) to execute priviledge management statements in a single or batch mode. + +### Basic Concepts +#### User +The user is the legal user of the database. A user corresponds to a unique username and has a password as a means of authentication. Before using a database, a person must first provide a legitimate username and password to make himself/herself a user. + +#### Priviledge +The database provides a variety of operations, and not all users can perform all operations. If a user can perform an operation, the user is said to have the priviledge to perform the operation. Priviledges can be divided into data management priviledge (such as adding, deleting and modifying data) and authority management priviledge (such as creation and deletion of users and roles, granting and revoking of priviledges, etc.). Data management priviledge often needs a path to limit its effective range, which is a subtree rooted at the path's corresponding node. + +#### Role +A role is a set of priviledges and has a unique role name as an identifier. A user usually corresponds to a real identity (such as a traffic dispatcher), while a real identity may correspond to multiple users. These users with the same real identity tend to have the same priviledges. Roles are abstractions that can unify the management of such priviledges. + +#### Default User +There is a default user in IoTDB after the initial installation: root, and the default password is root. This user is an administrator user, who cannot be deleted and has all the priviledges. Neither can new priviledges be granted to the root user nor can priviledges owned by the root user be deleted. + +### Priviledge Management Operation Examples +According to the [sample data](material-sampledata), the sample data of IoTDB may belong to different power generation groups such as ln, sgcc, etc. Different power generation groups do not want others to obtain their own database data, so we need to have data priviledge isolated at the group layer. + +#### Create User + +We can create two users for ln and sgcc groups, named ln\_write\_user and sgcc\_write\_user, with both passwords being write\_pwd. The SQL statement is: + +``` +CREATE USER ln_write_user write_pwd +CREATE USER sgcc_write_user write_pwd +``` +Then use the following SQL statement to show the user: + +``` +LIST USER +``` +As can be seen from the result shown below, the two users have been created: + +
+ +#### Grant User Priviledge +At this point, although two users have been created, they do not have any priviledges, so they can not operate on the database. For example, we use ln_write_user to write data in the database, the SQL statement is: + +``` +INSERT INTO root.ln.wf01.wt01(timestamp,status) values(1509465600000,true) +``` +The SQL statement will not be executed and the corresponding error prompt is given as follows: + +
+ +Now, we grant the two users write priviledges to the corresponding storage groups, and try to write data again. The SQL statement is: + +``` +GRANT USER ln_write_user PRIVILEGES 'INSERT_TIMESERIES' on root.ln +GRANT USER sgcc_write_user PRIVILEGES 'INSERT_TIMESERIES' on root.sgcc +INSERT INTO root.ln.wf01.wt01(timestamp, status) values(1509465600000, true) +``` +The execution result is as follows: +
+ +### Other Instructions +#### The Relationship among Users, Priviledges and Roles + +A Role is a set of priviledges, and priviledges and roles are both attributes of users. That is, a role can have several priviledges and a user can have several roles and priviledges (called the user's own priviledges). + +At present, there is no conflicting priviledge in IoTDB, so the real priviledges of a user is the union of the user's own priviledges and the priviledges of the user's roles. That is to say, to determine whether a user can perform an operation, it depends on whether one of the user's own priviledges or the priviledges of the user's roles permits the operation. The user's own priviledges and priviledges of the user's roles may overlap, but it does not matter. + +It should be noted that if users have a priviledge (corresponding to operation A) themselves and their roles contain the same priviledge, then revoking the priviledge from the users themselves alone can not prohibit the users from performing operation A, since it is necessary to revoke the priviledge from the role, or revoke the role from the user. Similarly, revoking the priviledge from the users's roles alone can not prohibit the users from performing operation A. + +At the same time, changes to roles are immediately reflected on all users who own the roles. For example, adding certain priviledges to roles will immediately give all users who own the roles corresponding priviledges, and deleting certain priviledges will also deprive the corresponding users of the priviledges (unless the users themselves have the priviledges). + +#### List of Priviledges Included in the System + +
**Table 3-8 List of Priviledges Included in the System** + +|Priviledge Name|Interpretation| +|:---|:---| +|SET\_STORAGE\_GROUP|create timeseries; set storage groups; path dependent| +|INSERT\_TIMESERIES|insert data; path dependent| +|UPDATE\_TIMESERIES|update data; path dependent| +|READ\_TIMESERIES|query data; path dependent| +|DELETE\_TIMESERIES|delete data or timeseries; path dependent| +|CREATE\_USER|create users; path independent| +|DELETE\_USER|delete users; path independent| +|MODIFY\_PASSWORD|modify passwords for all users; path independent; (Those who do not have this priviledge can still change their own asswords. )| +|LIST\_USER|list all users; list a user's priviledges; list a user's roles with three kinds of operation priviledges; path independent| +|GRANT\_USER\_PRIVILEGE|grant user priviledges; path independent| +|REVOKE\_USER\_PRIVILEGE|revoke user priviledges; path independent| +|GRANT\_USER\_ROLE|grant user roles; path independent| +|REVOKE\_USER\_ROLE|revoke user roles; path independent| +|CREATE\_ROLE|create roles; path independent| +|DELETE\_ROLE|delete roles; path independent| +|LIST\_ROLE|list all roles; list the priviledges of a role; list the three kinds of operation priviledges of all users owning a role; path independent| +|GRANT\_ROLE\_PRIVILEGE|grant role priviledges; path independent| +|REVOKE\_ROLE\_PRIVILEGE|revoke role priviledges; path independent| +
+ +#### Username Restrictions +IoTDB specifies that the character length of a username should not be less than 4, and the username cannot contain spaces. +#### Password Restrictions +IoTDB specifies that the character length of a password should not be less than 4, and the password cannot contain spaces. The password is encrypted with MD5. +#### Role Name Restrictions +IoTDB specifies that the character length of a role name should not be less than 4, and the role name cannot contain spaces. diff --git a/docs/Documentation/UserGuideV0.7.0/4-Deployment and Management.md b/docs/Documentation/UserGuideV0.7.0/4-Deployment and Management.md new file mode 100644 index 0000000000000..ad0217d5fcc17 --- /dev/null +++ b/docs/Documentation/UserGuideV0.7.0/4-Deployment and Management.md @@ -0,0 +1,749 @@ + + +- [Chapter4: Deployment and Management](#chapter4-deployment-and-management) + - [Deployment](#deployment) + - [Prerequisites](#prerequisites) + - [Installation from binary files](#installation-from--binary-files) + - [Installation from source code](#installation-from-source-code) + - [Configuration](#configuration) + - [IoTDB Environment Configuration File](#iotdb-environment-configuration-file) + - [IoTDB System Configuration File](#iotdb-system-configuration-file) + - [File Layer](#file-layer) + - [Engine Layer](#engine-layer) + - [System Monitor](#system-monitor) + - [System Status Monitoring](#system-status-monitoring) + - [Data Status Monitoring](#data-status-monitoring) + - [Writing Data Monitor](#writing-data-monitor) + - [Example](#example) + - [System log](#system-log) + - [Dynamic System Log Configuration](#dynamic-system-log-configuration) + - [Connect JMX](#connect-jmx) + - [Interface Instruction](#interface-instruction) + - [Data Management](#data-management) + - [Data Files](#data-files) + - [System Files](#system-files) + - [Pre-write Log Files](#pre-write-log-files) + - [Example of Setting Data storage Directory](#example-of-setting-data-storage-directory) + + +# Chapter4: Deployment and Management + +## Deployment + +IoTDB provides you two installation methods, you can refer to the following suggestions, choose one of them: + +* Installation from binary files. Download the binary files from the official website. This is the recommended method, in which you will get a binary released package which is out-of-the-box. +* Installation from source code. If you need to modify the code yourself, you can use this method. + +### Prerequisites + +To install and use IoTDB, you need to have: + +1. Java >= 1.8 (Please make sure the environment path has been set) +2. Maven >= 3.0 (If you want to compile and install IoTDB from source code) +3. TsFile >= 0.7.0 (TsFile Github page: [https://github.com/thulab/tsfile](https://github.com/thulab/tsfile)) +4. IoTDB-JDBC >= 0.7.0 (IoTDB-JDBC Github page: [https://github.com/thulab/iotdb-jdbc](https://github.com/thulab/iotdb-jdbc)) + +TODO: TsFile and IoTDB-JDBC dependencies will be removed after the project reconstruct. + +### Installation from binary files + +IoTDB provides you binary files which contains all the necessary components for the IoTDB system to run. You can get them on our website [http://tsfile.org/download](http://tsfile.org/download). + +``` +NOTE: +iotdb-.tar.gz # For Linux or MacOS +iotdb-.zip # For Windows +``` + +After downloading, you can extract the IoTDB tarball using the following operations: + +``` +Shell > uzip iotdb-.zip # For Windows +Shell > tar -zxf iotdb-.tar.gz # For Linux or MacOS +``` + +The IoTDB project will be at the subfolder named iotdb. The folder will include the following contents: + +``` +iotdb/ <-- root path +| ++- bin/ <-- script files +| ++- conf/ <-- configuration files +| ++- lib/ <-- project dependencies +| ++- LICENSE <-- LICENSE +``` + +### Installation from source code + +Use git to get IoTDB source code: + +``` +Shell > git clone https://github.com/thulab/iotdb.git +``` + +If you are not the first time that building IoTDB, remember deleting the following files: + +``` +rm -rf iotdb/data/ +rm -rf iotdb/lib/ +``` + +Then under the IoTDB path, you can build IoTDB using Maven: + +``` +mvn clean package -Dmaven.test.skip=true +``` + +If successful, you will see the the following text in the terminal: + +``` +[INFO] BUILD SUCCESS +``` +Otherwise, you may need to check the error statements and fix the problems. + +After build, the IoTDB project will be at the subfolder named iotdb. The folder will include the following contents: + + +``` +iotdb/ <-- root path +| ++- bin/ <-- script files +| ++- conf/ <-- configuration files +| ++- lib/ <-- project dependencies +| ++- LICENSE <-- LICENSE +``` + +## Configuration + + +Before starting to use IoTDB, you need to config the configuration files first. For your convenience, we have already set the default config in the files. + +In total, we provide users three kinds of configurations module: + +* environment configuration file (iotdb-env.bat, iotdb-env.sh). The default configuration file for the environment configuration item. Users can configure the relevant system configuration items of JAVA-JVM in the file. +* system configuration file (tsfile-format.properties, iotdb-engine.properties). + * tsfile-format.properties: The default configuration file for the IoTDB file layer configuration item. Users can configure the information about the TsFile, such as the data size written to the disk per time(group\_size\_in_byte). + * iotdb-engine.properties: The default configuration file for the IoTDB engine layer configuration item. Users can configure the IoTDB engine related parameters in the file, such as JDBC service listening port (rpc\_port), overflow data storage directory (overflow\_data\_dir), etc. +* log configuration file (logback.xml) + +The configuration files of the three configuration items are located in the IoTDB installation directory: $IOTDB_HOME/conf folder. + +### IoTDB Environment Configuration File + +The environment configuration file is mainly used to configure the Java environment related parameters when IoTDB Server is running, such as JVM related configuration. This part of the configuration is passed to the JVM when the IoTDB Server starts. Users can view the contents of the environment configuration file by viewing the iotdb-env.sh (or iotdb-env.bat) file. + +The detail of each variables are as follows: + +* JMX\_LOCAL + +|Name|JMX\_LOCAL| +|:---:|:---| +|Description|JMX monitoring mode, configured as yes to allow only local monitoring, no to allow remote monitoring| +|Type|Enum String: "yes", "no"| +|Default|yes| +|Effective|After restart system| + + +* JMX\_PORT + +|Name|JMX\_PORT| +|:---:|:---| +|Description|JMX listening port. Please confirm that the port is not a system reserved port and is not occupied| +|Type|Short Int: [0,65535]| +|Default|31999| +|Effective|After restart system| + +* MAX\_HEAP\_SIZE + +|Name|MAX\_HEAP\_SIZE| +|:---:|:---| +|Description|The maximum heap memory size that IoTDB can use at startup.| +|Type|String| +|Default| On Linux or MacOS, the default is one quarter of the memory. On Windows, the default value for 32-bit systems is 512M, and the default for 64-bit systems is 2G.| +|Effective|After restart system| + +* HEAP\_NEWSIZE + +|Name|HEAP\_NEWSIZE| +|:---:|:---| +|Description|The minimum heap memory size that IoTDB can use at startup.| +|Type|String| +|Default| On Linux or MacOS, the default is min{cores * 100M, one quarter of MAX\_HEAP\_SIZE}. On Windows, the default value for 32-bit systems is 512M, and the default for 64-bit systems is 2G.| +|Effective|After restart system| + +### IoTDB System Configuration File + +#### File Layer + +* compressor + +|Name|compressor| +|:---:|:---| +|Description|Data compression method| +|Type|Enum String : “UNCOMPRESSED”, “SNAPPY”| +|Default| UNCOMPRESSED | +|Effective|Immediately| + +* group\_size\_in\_byte + +|Name|group\_size\_in\_byte| +|:---:|:---| +|Description|The data size written to the disk per time| +|Type|Int32| +|Default| 134217728 | +|Effective|Immediately| + +* max\_number\_of\_points\_in\_page + +|Name| max\_number\_of\_points\_in\_page | +|:---:|:---| +|Description|The maximum number of data points (timestamps - valued groups) contained in a page| +|Type|Int32| +|Default| 1048576 | +|Effective|Immediately| + +* max\_string\_length + +|Name| max\_string\_length | +|:---:|:---| +|Description|The maximum length of a single string (number of character)| +|Type|Int32| +|Default| 128 | +|Effective|Immediately| + +* page\_size\_in\_byte + +|Name| page\_size\_in\_byte | +|:---:|:---| +|Description|The maximum size of a single page written in memory when each column in memory is written (in bytes)| +|Type|Int32| +|Default| 134217728 | +|Effective|Immediately| + +* time\_series\_data\_type + +|Name| time\_series\_data\_type | +|:---:|:---| +|Description|Timestamp data type| +|Type|Enum String: "INT32", "INT64"| +|Default| Int64 | +|Effective|Immediately| + +* time\_series\_encoder + +|Name| time\_series\_data\_type | +|:---:|:---| +|Description| TimeSeries encoding type| +|Type|Enum String: “TS_2DIFF”,“PLAIN”,“RLE”| +|Default| TS_2DIFF | +|Effective|Immediately| + +* float_precision + +|Name| float_precision | +|:---:|:---| +|Description| The precision of the floating point number.(The number of digits after the decimal point) | +|Type|Int32| +|Default| The default is 2 digits. Note: The 32-bit floating point number has a decimal precision of 7 bits, and the 64-bit floating point number has a decimal precision of 15 bits. If the setting is out of the range, it will have no practical significance. | +|Effective|Immediately| + +#### Engine Layer + +* back\_loop\_period + +|Name| back\_loop\_period | +|:---:|:---| +|Description| The frequency at which the system statistic module triggers(in seconds). | +|Type|Int32| +|Default| 10 | +|Effective|After restart system| + +* data\_dir + +|Name| data\_dir | +|:---:|:---| +|Description| The IoTDB data path.By default, it is stored in the data directory at the same level as the bin directory. It is recommended to use an absolute path. | +|Type|String| +|Default| data | +|Effective|After restart system| + +* enable_wal + +|Name| enable_wal | +|:---:|:---| +|Description| Whether to enable the pre-write log. The default value is true(enabled), and false means closed. | +|Type|Bool| +|Default| true | +|Effective|After restart system| + +* fetch_size + +|Name| fetch_size | +|:---:|:---| +|Description| The amount of data read each time in batches(the number of data strips, that is, the number of different time stamps.) | +|Type|Int32| +|Default| 10000 | +|Effective|After restart system| + +* flush\_wal\_period\_in\_ms + +|Name| flush\_wal\_period\_in\_ms | +|:---:|:---| +|Description| The period during which the log is periodically flushed to disk(in milliseconds) | +|Type|Int32| +|Default| 10 | +|Effective|After restart system| + +* flush\_wal\_threshold + +|Name| flush\_wal\_threshold | +|:---:|:---| +|Description| After the WAL reaches this value, it is flushed to disk, and it is possible to lose at most flush_wal_threshold operations. | +|Type|Int32| +|Default| 10000 | +|Effective|After restart system| + +* max\_opened\_folder + +|Name| max\_opened\_folder | +|:---:|:---| +|Description| The maximum number of folders opened at the same time. When the value becomes larger, the memory usage increases, the IO random read and write becomes less, and the file partition (ie, group) is more neat; the smaller the value, the less memory is occupied, the IO random read and write becomes more, and the file block size is insufficient. | +|Type|Int32| +|Default| 100 | +|Effective|After restart system| + +* merge\_concurrent\_threads + +|Name| merge\_concurrent\_threads | +|:---:|:---| +|Description| THe max threads which can be used when overflow data is merged. The larger it is, the more IO and CPU cost. The smaller the value, the more the disk is occupied when the overflow data is too large, the reading will be slower. | +|Type|Int32| +|Default| 10 | +|Effective|After restart system| + +* mult\_dir\_strategy + +|Name| mult\_dir\_strategy | +|:---:|:---| +|Description| IoTDB's strategy for selecting directories for TsFile in tsfile_dir. You can use a simple class name or a full name of the class. The system provides the following three strategies:
1. SequenceStrategy: IoTDB selects the directory from tsfile\_dir in order, traverses all the directories in tsfile\_dir in turn, and keeps counting;
2. MaxDiskUsableSpaceFirstStrategy: IoTDB first selects the directory with the largest free disk space in tsfile\_dir;
3. MinFolderOccupiedSpaceFirstStrategy: IoTDB prefers the directory with the least space used in tsfile\_dir;
4. (user-defined policy)
You can complete a user-defined policy in the following ways:
1. Inherit the cn.edu.tsinghua.iotdb.conf.directories.strategy.DirectoryStrategy class and implement its own Strategy method;
2. Fill in the configuration class with the full class name of the implemented class (package name plus class name, UserDfineStrategyPackage);
3. Add the jar file to the project. | +|Type|String| +|Default| MaxDiskUsableSpaceFirstStrategy | +|Effective|After restart system| + +* period\_time\_for\_flush\_in\_second + +|Name| period\_time\_for\_flush\_in\_second | +|:---:|:---| +|Description| The interval period IoTDB closes files(in seconds). At every set time, the system will automatically flush the data in the memory to the disk and seal all the files that are currently open.| +|Type|Int32| +|Default| 3600 | +|Effective|After restart system| + +* period\_time\_for\_merge\_in\_second + +|Name| period\_time\_for\_merge\_in\_second | +|:---:|:---| +|Description| IoTDB has two parts of data in memory at runtime: overflow and bufferwrite. The system will automatically merge the two parts of data at regular intervals. This is the merge interval(in seconds).| +|Type|Int32| +|Default| 7200 | +|Effective|After restart system| + +* rpc_port + +|Name| rpc_port | +|:---:|:---| +|Description| The jdbc service listens on the port. Please confirm that the port is not a system reserved port and is not occupied.| +|Type|Short Int : [0,65535]| +|Default| 6667 | +|Effective|After restart system| + +* tsfile_dir + +|Name| tsfile_dir | +|:---:|:---| +|Description| The storage path of TsFile. By default, it is stored in three folders under data directory(soldled1, settled2, and settled3). See the [mult\_dir\_strategy](chapter4,multdirstrategy) configuration item for data distribution strategy. The starting directory of the relative path is related to the operating system. It is recommended to use an absolute path. If the path does not exist, the system will automatically create it.| +|Type|String[]| +|Default| settled1, settled2, settled3 | +|Effective|After restart system| + +* wal\_cleanup\_threshold + +|Name| wal\_cleanup\_threshold | +|:---:|:---| +|Description| When the total number of logs in the file and in memory reaches this value, all logs are compressed and the useless log is removed. The default is 500000. If this value is too large, it will cause a short write pause. If it is too small, it will increase IO and CPU consumption. | +|Type|Int32| +|Default| 500000 | +|Effective|After restart system| + +* sys\_dir + +|Name| sys\_dir | +|:---:|:---| +|Description| IoTDB metadata storage path.(By default it is in the data directory at the same level as the bin directory. The starting directory of the relative path is related to the operating system. It is recommended to use an absolute path. | +|Type|String| +|Default| system | +|Effective|After restart system| + +* time_zone + +|Name| time_zone | +|:---:|:---| +|Description| The time zone in which the server is located, the default is Beijing time (+8) | +|Type|Time Zone String| +|Default| +08:00 | +|Effective|After restart system| + +* enable\_stat\_monitor + +|Name| enable\_stat\_monitor | +|:---:|:---| +|Description| Whether to enable background statistics| +|Type| Boolean | +|Default| true | +|Effective|After restart system| + + +* mem\_threshold\_warning + +|Name| mem\_threshold\_warning | +|:---:|:---| +|Description| A percentage value, which is multiplied by the maximum heap memory assigned by the IoTDB runtime to get a threshold. When the IoTDB uses memory beyond the threshold, it will trigger the operation of writing the current in-memory data to the disk and releasing the corresponding memory. By default, IoTDB runtime can use 80% of the maximum heap memory. If the value is configured to exceed 1, the configuration item will not take effect. If the value is less than or equal to 0, then the default value is used.| +|Type| Float | +|Default| 0.8 | +|Effective|After restart system| + + +* mem\_threshold\_dangerous + +|Name| mem\_threshold\_dangerous | +|:---:|:---| +|Description| A percentage value, which is multiplied by the maximum heap memory allocated by the IoTDB runtime to get a threshold. When the IoTDB uses memory beyond the threshold, it will trigger the operation of writing the current in-memory data to the disk and releasing the corresponding memory. At the same time, the write operation will be blocked. By default, the IoTDB runtime can use 90% of the maximum heap memory. If the value is configured to exceed 1, the configuration item will not take effect. If the value is less than or equal to 0, then the default value is used.| +|Type| Float | +|Default| 0.9 | +|Effective|After restart system| + +* mem\_monitor\_interval + +|Name| mem\_monitor\_interval | +|:---:|:---| +|Description| The time interval IoTDB system checks the current memory usage. If the threshold calculated according to mem_threshold_warning or mem_threshold_dangerous is exceeded, the corresponding operation will be triggered. The unit is milliseconds and the default is 1000 milliseconds.| +|Type| Int64 | +|Default| 1000 | +|Effective|After restart system| + +* bufferwrite\_meta\_size\_threshold + +|Name| bufferwrite\_meta\_size\_threshold | +|:---:|:---| +|Description| When the metadata size of the TsFile saved in the memory exceeds the threshold, the metadata is saved at the end of the TsFile, and then the file is closed and the memory space occupied by the metadata is released. The unit is byte and the default value is 200M.| +|Type| Int64 | +|Default| 209715200 | +|Effective|After restart system| + +* bufferwrite\_file\_size\_threshold + +|Name| bufferwrite\_meta\_size\_threshold | +|:---:|:---| +|Description| When a TsFile size on the disk exceeds this threshold, the TsFile is closed and open a new TsFile to accept data writes. The unit is byte and the default value is 2G.| +|Type| Int64 | +|Default| 2147483648 | +|Effective|After restart system| + + +* overflow\_meta\_size\_threshold + +|Name| overflow\_meta\_size\_threshold | +|:---:|:---| +|Description| When the size of the Overflow metadata stored in the memory exceeds the threshold, the metadata is saved at the end of the TsFile, then the file is closed and the memory space occupied by the metadata is released. The unit is byte and the default value is 200M.| +|Type| Int64 | +|Default| 209715200 | +|Effective|After restart system| + +* overflow\_file\_size\_threshold + +|Name| overflow\_file\_size\_threshold | +|:---:|:---| +|Description| When an Overflow file size on the disk exceeds this threshold, the Overflow file is closed. And open a new Overflow file to accept data writes. The unit is byte, the default value is 2G| +|Type| Int64 | +|Default| 2147483648 | +|Effective|After restart system| + +* concurrent\_flush\_thread + +|Name| concurrent\_flush\_thread | +|:---:|:---| +|Description| The thread number used to perform the operation when IoTDB writes data in memory to disk. If the value is less than or equal to 0, then the number of CPU cores installed on the machine is used. The default is 0.| +|Type| Int32 | +|Default| 0 | +|Effective|After restart system| + + +* stat\_monitor\_detect\_freq\_sec + +|Name| concurrent\_flush\_thread | +|:---:|:---| +|Description| The time interval which the system check whether the current record statistic time range exceeds stat_monitor_retain_interval every time (in seconds) and perform regular cleaning| +|Type| Int32 | +|Default|600 | +|Effective|After restart system| + + +* stat\_monitor\_retain\_interval\_sec + +|Name| stat\_monitor\_retain\_interval\_sec | +|:---:|:---| +|Description| The retention time of system statistics data(in seconds). Statistics data over the retention time range will be cleaned regularly.| +|Type| Int32 | +|Default|600 | +|Effective|After restart system| + +## System Monitor + +Currently, IoTDB provides users to use Java's JConsole tool to monitor system status or use IoTDB's open API to check data status. + +### System Status Monitoring + +After starting JConsole tool and connecting to IoTDB server, you will have a basic look at IoTDB system status(CPU Occupation, in-memory information, etc.). See [official documentation](https://docs.oracle.com/javase/7/docs/technotes/guides/management/jconsole.html) for more informations. + +### Data Status Monitoring + +This module is the statistical monitoring method provided by IoTDB for users to store data information. We will record the statistical data in the system and store it in the database. The current 0.7.0 version of IoTDB provides statistics for writing data. + +The user can choose to enable or disable the data statistics monitoring function (set the `enable_stat_monitor` item in the configuration file, see [Engine Layer](chapter4,enginelayer) for details). + +#### Writing Data Monitor + +The current statistics of writing data by the system can be divided into two major modules: **Global Writing Data Statistics** and **Storage Group Writing Data Statistics**. **Global Writing Data Statistics** records the point number written by the user and the number of requests. **Storage Group Writing Data Statistics** records data of a certain storage group. + +The system defaults to collect data every 5 seconds, and writes the statistics to the IoTDB and stores them in a system-specified locate. (If you need to change the statistic frequency, you can set The `back_loop_period_sec entry` in the configuration file, see Section [Engine Layer](chapter4,enginelayer) for details). After the system is refreshed or restarted, IoTDB does not recover the statistics, and the statistics data will restart from zero. + +In order to avoid the excessive use of statistical information, we add a mechanism to periodically clear invalid data for statistical information. The system will delete invalid data at regular intervals. The user can set the trigger frequency (`stat_monitor_retain_interval_sec`, default is 600s, see section [Engine Layer](chapter4,enginelayer) for details) to set the frequency of deleting data. By setting the valid data duration (`stat_monitor_detect_freq_sec entry`, the default is 600s, see section [Engine Layer](chapter4,enginelayer) for details) to set the time period of valid data, that is, the data within the time of the clear operation trigger time is stat_monitor_detect_freq_sec is valid data. In order to ensure the stability of the system, it is not allowed to delete the statistics frequently. Therefore, if the configuration parameter time is less than the default value (600s), the system will abort the configuration parameter and uses the default parameter. + +It's convenient for you to use `select` clause to get the writing data statistics the same as other timeseires. + +Here are the writing data statistics: + +* TOTAL_POINTS (GLOABAL) + +|Name| TOTAL\_POINTS | +|:---:|:---| +|Description| Calculate the global writing points number.| +|Type| Writing data statistics | +|Timeseries Name| root.stats.write.global.TOTAL\_POINTS | +|Reset After Restarting System| yes | +|Example| select TOTAL_POINTS from root.stats.write.global| + +* TOTAL\_REQ\_SUCCESS (GLOABAL) + +|Name| TOTAL\_REQ\_SUCCESS | +|:---:|:---| +|Description| Calculate the global successful requests number.| +|Type| Writing data statistics | +|Timeseries Name| root.stats.write.global.TOTAL\_REQ\_SUCCESS | +|Reset After Restarting System| yes | +|Example| select TOTAL\_REQ\_SUCCESS from root.stats.write.global| + +* TOTAL\_REQ\_FAIL (GLOABAL) + +|Name| TOTAL\_REQ\_FAIL | +|:---:|:---| +|Description| Calculate the global failed requests number.| +|Type| Writing data statistics | +|Timeseries Name| root.stats.write.global.TOTAL\_REQ\_FAIL | +|Reset After Restarting System| yes | +|Example| select TOTAL\_REQ\_FAIL from root.stats.write.global| + + +* TOTAL\_POINTS\_FAIL (GLOABAL) + +|Name| TOTAL\_POINTS\_FAIL | +|:---:|:---| +|Description| Calculate the global failed writing points number.| +|Type| Writing data statistics | +|Timeseries Name| root.stats.write.global.TOTAL\_POINTS\_FAIL | +|Reset After Restarting System| yes | +|Example| select TOTAL\_POINTS\_FAIL from root.stats.write.global| + + +* TOTAL\_POINTS\_SUCCESS (GLOABAL) + +|Name| TOTAL\_POINTS\_SUCCESS | +|:---:|:---| +|Description| Calculate the c.| +|Type| Writing data statistics | +|Timeseries Name| root.stats.write.global.TOTAL\_POINTS\_SUCCESS | +|Reset After Restarting System| yes | +|Example| select TOTAL\_POINTS\_SUCCESS from root.stats.write.global| + +* TOTAL\_REQ\_SUCCESS (STORAGE GROUP) + +|Name| TOTAL\_REQ\_SUCCESS | +|:---:|:---| +|Description| Calculate the successful requests number for specific storage group| +|Type| Writing data statistics | +|Timeseries Name| root.stats.write.\.TOTAL\_REQ\_SUCCESS | +|Reset After Restarting System| yes | +|Example| select TOTAL\_REQ\_SUCCESS from root.stats.write.\| + +* TOTAL\_REQ\_FAIL (STORAGE GROUP) + +|Name| TOTAL\_REQ\_FAIL | +|:---:|:---| +|Description| Calculate the fail requests number for specific storage group| +|Type| Writing data statistics | +|Timeseries Name| root.stats.write.\.TOTAL\_REQ\_FAIL | +|Reset After Restarting System| yes | +|Example| select TOTAL\_REQ\_FAIL from root.stats.write.\| + + +* TOTAL\_POINTS\_SUCCESS (STORAGE GROUP) + +|Name| TOTAL\_POINTS\_SUCCESS | +|:---:|:---| +|Description| Calculate the successful writing points number for specific storage group.| +|Type| Writing data statistics | +|Timeseries Name| root.stats.write.\.TOTAL\_POINTS\_SUCCESS | +|Reset After Restarting System| yes | +|Example| select TOTAL\_POINTS\_SUCCESS from root.stats.write.\| + + +* TOTAL\_POINTS\_FAIL (STORAGE GROUP) + +|Name| TOTAL\_POINTS\_FAIL | +|:---:|:---| +|Description| Calculate the fail writing points number for specific storage group.| +|Type| Writing data statistics | +|Timeseries Name| root.stats.write.\.TOTAL\_POINTS\_FAIL | +|Reset After Restarting System| yes | +|Example| select TOTAL\_POINTS\_FAIL from root.stats.write.\| + +> Note: +> +> \ should be replaced by real storage group name, and the '.' in storage group need to be replaced by '_'. For example, the storage group name is 'root.a.b', when using in the statistics, it will change to 'root\_a\_b' + +##### Example + +Here we give some example of using writing data statistics. + +If you want to know the global successful writing points number, you can use `select` clause to query it's value. The query statement is like this: + +``` +select TOTAL_POINTS_SUCCESS from root.stats.write.global +``` + +If you want to know the successfule writing points number of root.ln (storage group), here is the query statement: + +``` +select TOTAL_POINTS_SUCCESS from root.stats.write.root_ln +``` + +If you want to know the current timeseries point in the system, you can use `MAX_VALUE` function to query. Here is the query statement: + +``` +select MAX_VALUE(TOTAL_POINTS_SUCCESS) from root.stats.write.root_ln +``` + +## System log + +IoTDB allows users to configure IoTDB system logs (such as log output level) by modifying the log configuration file. The default location of the system log configuration file is in \$IOTDB_HOME/conf folder. + +The default log configuration file is named logback.xml. The user can modify the configuration of the system running log by adding or changing the xml tree node parameters. It should be noted that the configuration of the system log using the log configuration file does not take effect immediately after the modification, instead, it will take effect after restarting the system. The usage of logback.xml is just as usual. + +At the same time, in order to facilitate the debugging of the system by the developers and DBAs, we provide several JMX interface to dynamically modify the log configuration, and configure the Log module of the system in real time without restarting the system. For detailed usage, see [Dynamic System Log Configuration](Chap4dynamicsystemlog) section. + +### Dynamic System Log Configuration + +#### Connect JMX + +Here we use Jconsole to connect with JMX. + +Start the Jconsole, establish a new JMX connection with the IoTDB Server (you can select the local process or input the IP and PORT for remote connection, the default operation port of the IoTDB JMX service is 31999). Fig 4.1 shows the connection GUI of jconsole. + + + +After connected, click `MBean` and find `ch.qos.logback.classic.default.ch.qos.logback.classic.jmx.JMXConfigurator`(As shown in fig 4.2). + + +In the JMXConfigurator Window, there are 6 operation provided for you, as shown in fig 4.3. You can use there interface to perform operation. + + + +#### Interface Instruction + +* reloadDefaultConfiguration + +This method is to reload the default logback configuration file. The user can modify the default configuration file first, and then call this method to reload the modified configuration file into the system to take effect. + +* reloadByFileName + +This method loads a logback configuration file with the specified path and name, and then makes it take effect. This method accepts a parameter of type String named p1, which is the path to the configuration file that needs to be specified for loading. + +* getLoggerEffectiveLevel + +This method is to obtain the current log level of the specified Logger. This method accepts a String type parameter named p1, which is the name of the specified Logger. This method returns the log level currently in effect for the specified Logger. + +* getLoggerLevel + +This method is to obtain the log level of the specified Logger. This method accepts a String type parameter named p1, which is the name of the specified Logger. This method returns the log level of the specified Logger. +It should be noted that the difference between this method and the `getLoggerEffectiveLevel` method is that the method returns the log level that the specified Logger is set in the configuration file. If the user does not set the log level for the Logger. , then return empty. According to Logre's log-level inheritance mechanism, if a Logger is not displayed to set the log level, it will inherit the log level settings from its nearest ancestor. At this point, calling the `getLoggerEffectiveLevel` method will return the log level in which the Logger is in effect; calling the methods described in this section will return null. + +## Data Management + +In IoTDB, there are many kinds of data needed to be storage. In this section, we will introduce IoTDB's data storage strategy in order to give you an intuitive understanding of IoTDB's data management. + +The data that IoTDB stores is divided into three categories, namely data files, system files, and pre-write log files. + +### Data Files + +Data files store all the data that the user wrote to IoTDB, which contains TsFile and other files. TsFile storage directory can be configured with the `tsfile_dir` configuration item (see [file layer](Chap4filelayer) for details). Other files can be configured through [data_dir](chap4datadir) configuration item (see [Engine Layer](chapter4,enginelayer) for details). + +In order to better support users' storage requirements such as disk space expansion, IoTDB supports multiple file directorys storage methods for TsFile storage configuration. Users can set multiple storage paths as data storage locations( see [tsfile_dir](Chap4,tsfiledir) configuration item), and you can specify or customize the directory selection policy (see [mult_dir_strategy](chapter4,enginelayer) configuration item for details). + +### System Files + +System files include restore files and schema files, which store metadata information of data in IoTDB. It can be configured through the `sys_dir` configuration item (see [System Layer](chapter4,systemlayer) for details). + +### Pre-write Log Files + +Pre-write log files store WAL files. It can be configured through the `wal_dir` configuration item (see [System Layer](chapter4,systemlayer) for details). + +### Example of Setting Data storage Directory + +For a clearer understanding of configuring the data storage directory, we will give an excample in this section. + +All data directory paths involved in storage directory setting are: data_dir, tsfile_dir, mult_dir_strategy, sys_dir, and wal_dir, which refer to data files, stroage strategy, system files, and pre-write log files. You can choose to configure the items you'd like to change, otherwise, you can use the system default configuration item without any operation. + +Here we give an example of a user who configures all five configurations mentioned above. The configuration items are as follow: + +``` +data_dir = D:\\iotdb\\data\\data +tsfile_dir = E:\\iotdb\\data\\data1, data\\data2, F:\\data3 
mult_dir_strategy = MaxDiskUsableSpaceFirstStrategy
sys_dir = data\\system
wal_dir = data + +``` +After setting the configuration, the system will: + +* Save all data files except TsFile in D:\\iotdb\\data\\data +* Save TsFile in E:\\iotdb\\data\\data1, $IOTDB_HOME\\data\\data2 and F:\\data3. And the choosing strategy is `MaxDiskUsableSpaceFirstStrategy`, that is every time data writes to the disk, the system will automatically select a directory with the largest remaining disk space to write data. +* Save system data in $IOTDB_HOME\\data\\system +* Save WAL data in $IOTDB_HOME\\data + +> Note: +> +> If you change directory names in tsfile_dir, the newer name and the older name should be one-to-one correspondence. Also, the files in the older directory needs to be moved to the newer directory. +> +> If you add some directorys in tsfile_dir, IoTDB will add the path automatically. Nothing needs to do by your own. + +For example, modify the tsfile_dir to: + +``` +tsfile_dir = D:\\data4, E:\\data5, F:\\data6 +``` + +You need to move files in E:\iotdb\data\data1 to D:\data4, move files in %IOTDB_HOME%\data\data2 to E:\data5, move files in F:\data3 to F:\data6. In this way, the system will operation normally. diff --git a/docs/Documentation/UserGuideV0.7.0/5-SQL Documentation.md b/docs/Documentation/UserGuideV0.7.0/5-SQL Documentation.md new file mode 100644 index 0000000000000..b9fa6177887bb --- /dev/null +++ b/docs/Documentation/UserGuideV0.7.0/5-SQL Documentation.md @@ -0,0 +1,612 @@ + + +- [Chapter 5: IoTDB SQL Documentation](#chapter-5-iotdb-sql-documentation) + - [IoTDB Query Statement](#iotdb-query-statement) + - [Schema Statement](#schema-statement) + - [Data Management Statement](#data-management-statement) + - [Database Management Statement](#database-management-statement) + - [Functions](#functions) + - [Reference](#reference) + - [Keywords](#keywords) + - [Identifiers](#identifiers) + - [Literals](#literals) + + +# Chapter 5: IoTDB SQL Documentation + +In this part, we will introduce you IoTDB's Query Language. IoTDB offers you a SQL-like query language for interacting with IoTDB, the query language can be devided into 4 major parts: + +* Schema Statement: statements about schema management are all listed in this section. +* Data Management Statement: statements about data management (such as: data insertion, data query, etc.) are all listed in this section. +* Database Management Statement: statements about database management and authentication are all listed in this section. +* Functions: functions that IoTDB offers are all listed in this section. + +All of these statements are write in IoTDB's own syntax, for details about the syntax composition, please check the `Reference` section. + +## IoTDB Query Statement + + +### Schema Statement + +* Set Storage Group + +``` SQL +SET STORAGE GROUP TO +Eg: IoTDB > SET STORAGE GROUP TO root.ln.wf01.wt01 +Note: PrefixPath can not include `*` +``` +* Create Timeseries Statement + +``` +CREATE TIMESERIES WITH +AttributeClauses : DATATYPE= COMMA ENCODING= [COMMA ]* +DataTypeValue: BOOLEAN | DOUBLE | FLOAT | INT32 | INT64 | TEXT +EncodingValue: GORILLA | PLAIN | RLE | TS_2DIFF +ExtraAttributeClause: { + COMPRESSOR = + MAX_POINT_NUMBER = Integer +} +CompressorValue: UNCOMPRESSOR | SNAPPY +Eg: IoTDB > CREATE TIMESERIES root.ln.wf01.wt01.status WITH DATATYPE=BOOLEAN, ENCODING=PLAIN +Eg: IoTDB > CREATE TIMESERIES root.ln.wf01.wt01.temperature WITH DATATYPE=FLOAT, ENCODING=RLE +Eg: IoTDB > CREATE TIMESERIES root.ln.wf01.wt01.temperature WITH DATATYPE=FLOAT, ENCODING=RLE, COMPRESSOR=SNAPPY, MAX_POINT_NUMBER=3 +Note: Datatype and encoding type must be corresponding. Please check Chapter 3 Encoding Section for details. +``` + +* Delete Timeseries Statement + +``` +DELETE TIMESERIES [COMMA ]* +Eg: IoTDB > DELETE TIMESERIES root.ln.wf01.wt01.status +Eg: IoTDB > DELETE TIMESERIES root.ln.wf01.wt01.status, root.ln.wf01.wt01.temperature +Eg: IoTDB > DELETE TIMESERIES root.ln.wf01.wt01.* +``` + +* Show All Timeseries Statement + +``` +SHOW TIMESERIES +Eg: IoTDB > SHOW TIMESERIES +Note: This statement can only be used in IoTDB Client. If you need to show all timeseries in JDBC, please use `DataBaseMetadata` interface. +``` + +* Show Specific Timeseries Statement + +``` +SHOW TIMESERIES +Eg: IoTDB > SHOW TIMESERIES root +Eg: IoTDB > SHOW TIMESERIES root.ln +Eg: IoTDB > SHOW TIMESERIES root.ln.*.*.status +Eg: IoTDB > SHOW TIMESERIES root.ln.wf01.wt01.status +Note: The path can be prefix path, star path or timeseries path +Note: This statement can be used in IoTDB Client and JDBC. +``` + +* Show Storage Group Statement + +``` +SHOW STORAGE GROUP +Eg: IoTDB > SHOW STORAGE GROUP +Note: This statement can be used in IoTDB Client and JDBC. +``` + +### Data Management Statement + +* Insert Record Statement + +``` +INSERT INTO LPAREN TIMESTAMP COMMA [COMMA ]* RPAREN VALUES LPAREN , [COMMA ]* RPAREN +Sensor : Identifier +Eg: IoTDB > INSERT INTO root.ln.wf01.wt01(timestamp,status) values(1509465600000,true) +Eg: IoTDB > INSERT INTO root.ln.wf01.wt01(timestamp,status) VALUES(NOW(), false) +Eg: IoTDB > INSERT INTO root.ln.wf01.wt01(timestamp,temperature) VALUES(2017-11-01T00:17:00.000+08:00,24.22028) +Eg: IoTDB > INSERT INTO root.ln.wf01.wt01(timestamp, status, temperature) VALUES (1509466680000, false, 20.060787); +Note: the statement needs to satisfy this constraint: + = +Note: The order of Sensor and PointValue need one-to-one correspondence +``` + +* Update Record Statement + +``` +UPDATE SET WHERE +UpdateClause: +SetClause: +SetExpression: EQUAL +WhereClause : [(AND | OR) ]* +Condition : [(AND | OR) ]* +Expression : [NOT | !]? TIME PrecedenceEqualOperator +Eg: IoTDB > UPDATE root.ln.wf01.wt01 SET temperature = 23 WHERE time < NOW() and time > 2017-11-1T00:15:00+08:00 +Note: the statement needs to satisfy this constraint: + = +``` + +* Delete Record Statement + +``` +DELETE FROM [COMMA ]* WHERE TIME LESSTHAN +Eg: DELETE FROM root.ln.wf01.wt01.temperature WHERE time < 2017-11-1T00:05:00+08:00 +Eg: DELETE FROM root.ln.wf01.wt01.status, root.ln.wf01.wt01.temperature WHERE time < NOW() +Eg: DELETE FROM root.ln.wf01.wt01.* WHERE time < 1509466140000 +``` + +* Select Record Statement + +``` +SELECT FROM [WHERE ]? +SelectClause : (COMMA )* +SelectPath : LPAREN RPAREN | +FUNCTION : ‘COUNT’ , ‘MIN_TIME’, ‘MAX_TIME’, ‘MIN_VALUE’, ‘MAX_VALUE’ +FromClause : (COMMA )? +WhereClause : [(AND | OR) ]* +Condition : [(AND | OR) ]* +Expression : [NOT | !]? | [NOT | !]? +TimeExpr : TIME PrecedenceEqualOperator +SensorExpr : ( | ) PrecedenceEqualOperator +Eg: IoTDB > SELECT status, temperature FROM root.ln.wf01.wt01 WHERE temperature < 24 and time > 2017-11-1 0:13:00 +Eg. IoTDB > SELECT * FROM root +Eg. IoTDB > SELECT COUNT(temperature) FROM root.ln.wf01.wt01 WHERE root.ln.wf01.wt01.temperature < 25 +Eg. IoTDB > SELECT MIN_TIME(temperature) FROM root.ln.wf01.wt01 WHERE root.ln.wf01.wt01.temperature < 25 +Eg. IoTDB > SELECT MAX_TIME(temperature) FROM root.ln.wf01.wt01 WHERE root.ln.wf01.wt01.temperature > 24 +Eg. IoTDB > SELECT MIN_VALUE(temperature) FROM root.ln.wf01.wt01 WHERE root.ln.wf01.wt01.temperature > 23 +Eg. IoTDB > SELECT MAX_VALUE(temperature) FROM root.ln.wf01.wt01 WHERE root.ln.wf01.wt01.temperature < 25 +Note: the statement needs to satisfy this constraint: (SelectClause) + (FromClause) = +Note: If the (WhereClause) is started with and not with ROOT, the statement needs to satisfy this constraint: (FromClause) + (SensorExpr) = +Note: In Version 0.7.0, if includes `OR`, time filter can not be used. +``` + +* Group By Statement + +``` +SELECT FROM WHERE GROUP BY +SelectClause : [COMMA < Function >]* +Function : LPAREN RPAREN +FromClause : +WhereClause : [(AND | OR) ]* +Condition : [(AND | OR) ]* +Expression : [NOT | !]? | [NOT | !]? +TimeExpr : TIME PrecedenceEqualOperator +SensorExpr : ( | ) PrecedenceEqualOperator +GroupByClause : LPAREN (COMMA TimeValue)? COMMA (COMMA )* RPAREN +TimeUnit : Integer +DurationUnit : "ms" | "s" | "m" | "h" | "d" | "w" +TimeInterval: LBRACKET COMMA RBRACKET +Eg: SELECT COUNT(status), COUNT(temperature) FROM root.ln.wf01.wt01 where temperature < 24 GROUP BY(5m, [1509465720000, 1509466380000]) +Eg. SELECT COUNT (status), MAX_VALUE(temperature) FROM root.ln.wf01.wt01 WHERE time < 1509466500000 GROUP BY(5m, 1509465660000, [1509465720000, 1509466380000]) +Eg. SELECT MIN_TIME(status), MIN_VALUE(temperature) FROM root.ln.wf01.wt01 WHERE temperature < 25 and time < 1509466800000 GROUP BY (3m, 1509465600000, [1509466140000, 1509466380000], [1509466440000, 1509466620000]) +Note: the statement needs to satisfy this constraint: (SelectClause) + (FromClause) = +Note: If the (WhereClause) is started with and not with ROOT, the statement needs to satisfy this constraint: (FromClause) + (SensorExpr) = +Note: (TimeInterval) needs to be greater than 0 +Note: First (TimeInterval) in needs to be smaller than second (TimeInterval) +``` + +* Fill Statement + +``` +SELECT FROM WHERE FILL +SelectClause : [COMMA ]* +FromClause : < PrefixPath > [COMMA < PrefixPath >]* +WhereClause : +WhereExpression : TIME EQUAL +FillClause : LPAREN [COMMA ]* RPAREN +TypeClause : | | | | | +Int32Clause: INT32 LBRACKET ( | ) RBRACKET +Int64Clause: INT64 LBRACKET ( | ) RBRACKET +FloatClause: FLOAT LBRACKET ( | ) RBRACKET +DoubleClause: DOUBLE LBRACKET ( | ) RBRACKET +BoolClause: BOOLEAN LBRACKET ( | ) RBRACKET +TextClause: TEXT LBRACKET ( | ) RBRACKET +PreviousClause : PREVIOUS [COMMA ]? +LinearClause : LINEAR [COMMA COMMA ]? +ValidPreviousTime, ValidBehindTime: +TimeUnit : Integer +DurationUnit : "ms" | "s" | "m" | "h" | "d" | "w" +Eg: SELECT temperature FROM root.ln.wf01.wt01 WHERE time = 2017-11-01T16:37:50.000 FILL(float[previous, 1m]) +Eg: SELECT temperature,status FROM root.ln.wf01.wt01 WHERE time = 2017-11-01T16:37:50.000 FILL (float[linear, 1m, 1m], boolean[previous, 1m]) +Eg: SELECT temperature,status,hardware FROM root.ln.wf01.wt01 WHERE time = 2017-11-01T16:37:50.000 FILL (float[linear, 1m, 1m], boolean[previous, 1m], text[previous]) +Eg: SELECT temperature,status,hardware FROM root.ln.wf01.wt01 WHERE time = 2017-11-01T16:37:50.000 FILL (float[linear], boolean[previous, 1m], text[previous]) +Note: the statement needs to satisfy this constraint: (FromClause) + (SelectClause) = +Note: Integer in needs to be greater than 0 +``` + +* Limit Statement + +``` +SELECT FROM [WHERE ] [LIMIT ] [SLIMIT ] +SelectClause : [ | Function]+ +Function : LPAREN RPAREN +FromClause : +WhereClause : [(AND | OR) ]* +Condition : [(AND | OR) ]* +Expression: [NOT|!]? | [NOT|!]? +TimeExpr : TIME PrecedenceEqualOperator +SensorExpr : (|) PrecedenceEqualOperator +LIMITClause : [OFFSETClause]? +N : NonNegativeInteger +OFFSETClause : OFFSET +OFFSETValue : NonNegativeInteger +SLIMITClause : [SOFFSETClause]? +SN : NonNegativeInteger +SOFFSETClause : SOFFSET +SOFFSETValue : NonNegativeInteger +NonNegativeInteger:= ('+')? Digit+ +Eg: IoTDB > SELECT status, temperature FROM root.ln.wf01.wt01 WHERE temperature < 24 and time > 2017-11-1 0:13:00 LIMIT 3 OFFSET 2 +Eg. IoTDB > SELECT COUNT (status), MAX_VALUE(temperature) FROM root.ln.wf01.wt01 WHERE time < 1509466500000 GROUP BY(5m, 1509465660000, [1509465720000, 1509466380000]) LIMIT 3 +Note: The order of and does not affect the grammatical correctness. +Note: can only effect in Prefixpath and StarPath. +Note: can not use but not . +``` + +### Database Management Statement + +* Create User + +``` +CREATE USER ; +userName:=identifier +password:=identifier +Eg: IoTDB > CREATE USER thulab pwd; +``` + +* Delete User + +``` +DROP USER ; +userName:=identifier +Eg: IoTDB > DROP USER xiaoming; +``` + +* Create Role + +``` +CREATE ROLE ; +roleName:=identifie +Eg: IoTDB > CREATE ROLE admin; +``` + +* Delete Role + +``` +DROP ROLE ; +roleName:=identifier +Eg: IoTDB > DROP ROLE admin; +``` + +* Grant User Privileges + +``` +GRANT USER PRIVILEGES ON ; +userName:=identifier +nodeName:=identifier (DOT identifier)* +privileges:= string (COMMA string)* +Eg: IoTDB > GRANT USER tempuser PRIVILEGES 'DELETE_TIMESERIES' on root.ln; +``` + +* Grant Role Privileges + +``` +GRANT ROLE PRIVILEGES ON ; +privileges:= string (COMMA string)* +roleName:=identifier +nodeName:=identifier (DOT identifier)* +Eg: IoTDB > GRANT ROLE temprole PRIVILEGES 'DELETE_TIMESERIES' ON root.ln; +``` + +* Grant User Role + +``` +GRANT TO ; +roleName:=identifier +userName:=identifier +Eg: IoTDB > GRANT temprole TO tempuser; +``` + +* Revoke User Privileges + +``` +REVOKE USER PRIVILEGES ON ; +privileges:= string (COMMA string)* +userName:=identifier +nodeName:=identifier (DOT identifier)* +Eg: IoTDB > REVOKE USER tempuser PRIVILEGES 'DELETE_TIMESERIES' on root.ln; +``` + +* Revoke Role Privileges + +``` +REVOKE ROLE PRIVILEGES ON ; +privileges:= string (COMMA string)* +roleName:= identifier +nodeName:=identifier (DOT identifier)* +Eg: IoTDB > REVOKE ROLE temprole PRIVILEGES 'DELETE_TIMESERIES' ON root.ln; +``` + +* Revoke Role From User + +``` +REVOKE FROM ; +roleName:=identifier +userName:=identifier +Eg: IoTDB > REVOKE temproleFROM tempuser; +``` + +* List Users + +``` +LIST USER +Eg: IoTDB > LIST USER +``` + +* List Roles + +``` +LIST ROLE +Eg: IoTDB > LIST ROLE +``` + +* List Privileges + +``` +LIST PRIVILEGES USER ON ; +username:=identifier +path=‘root’ (DOT identifier)* +Eg: IoTDB > LIST PRIVIEGES USER sgcc_wirte_user ON root.sgcc; +``` + +* List Privileges of Roles(On Specific Path) + +``` +LIST PRIVILEGES ROLE ON ; +roleName:=identifier +path=‘root’ (DOT identifier)* +Eg: IoTDB > LIST PRIVIEGES ROLE wirte_role ON root.sgcc; +``` + +* List Privileges of Users + +``` +LIST USER PRIVILEGES ; +username:=identifier +Eg: IoTDB > LIST USER PRIVIEGES tempuser; +``` + +* List Privileges of Roles + +``` +LIST ROLE PRIVILEGES +roleName:=identifier +Eg: IoTDB > LIST ROLE PRIVIEGES actor; +``` + +* List Roles of Users + +``` +LIST ALL ROLE OF USER ; +username:=identifier +Eg: IoTDB > LIST ALL ROLE OF USER tempuser; +``` + +* List Users of Role + +``` +LIST ALL USER OF ROLE ; +roleName:=identifier +Eg: IoTDB > LIST ALL USER OF ROLE roleuser; +``` + +* Update Password + +``` +UPDATE USER SET PASSWORD ; +roleName:=identifier +password:=identifier +Eg: IoTDB > UPDATE USER tempuser SET PASSWORD newpwd; +``` + +### Functions + +* COUNT + +The COUNT function returns the value number of timeseries(one or more) non-null values selected by the SELECT statement. The result is a signed 64-bit integer. If there are no matching rows, COUNT () returns 0. + +``` +SELECT COUNT(Path) (COMMA COUNT(Path))* FROM [WHERE ]? +Eg. SELECT COUNT(status), COUNT(temperature) FROM root.ln.wf01.wt01 WHERE root.ln.wf01.wt01.temperature < 24 +Note: the statement needs to satisfy this constraint: + = +``` + +* FIRST + +The FIRST function returns the first point value of the choosen timeseries(oen or more). + +``` +SELECT FIRST (Path) (COMMA FIRST (Path))* FROM [WHERE ]? +Eg. SELECT FIRST (status), FIRST (temperature) FROM root.ln.wf01.wt01 WHERE root.ln.wf01.wt01.temperature < 24 +Note: the statement needs to satisfy this constraint: + = +``` + +* MAX_TIME + +The MAX_TIME function returns the maximum timestamp of the the choosen timeseries(oen or more). The result is a signed 64-bit integer, greater than 0. + +``` +SELECT MAX_TIME (Path) (COMMA MAX_TIME (Path))* FROM [WHERE ]? +Eg. SELECT MAX_TIME(status), MAX_TIME(temperature) FROM root.ln.wf01.wt01 WHERE root.ln.wf01.wt01.temperature < 24 +Note: the statement needs to satisfy this constraint: + = +``` + +* MAX_VALUE + +The MAX_VALUE function returns the maximum value(lexicographically ordered) of the the choosen timeseries (oen or more). + +``` +SELECT MAX_VALUE (Path) (COMMA MAX_VALUE (Path))* FROM [WHERE ]? +Eg. SELECT MAX_VALUE(status), MAX_VALUE(temperature) FROM root.ln.wf01.wt01 WHERE root.ln.wf01.wt01.temperature < 24 +Note: the statement needs to satisfy this constraint: + = +``` + +* MEAN + +The MEAN function returns the arithmetic mean value of the choosen timeseries over a specified period of time. The timeseries must be int32, int64, float, double type, and the other types are not to be calculated. The result is a double type number. + +``` +SELECT MEAN (Path) (COMMA MEAN (Path))* FROM [WHERE ]? +Eg. SELECT MEAN (status), MEAN (temperature) FROM root.ln.wf01.wt01 WHERE root.ln.wf01.wt01.temperature < 24 +Note: the statement needs to satisfy this constraint: + = +``` + +* MIN_TIME + +The MIN_TIME function returns the minimum timestamp of the the choosen timeseries(oen or more). The result is a signed 64-bit integer, greater than 0. + +``` +SELECT MIN_TIME (Path) (COMMA MIN_TIME (Path))*FROM [WHERE ]? +Eg. SELECT MIN_TIME(status), MIN_TIME(temperature) FROM root.ln.wf01.wt01 WHERE root.ln.wf01.wt01.temperature < 24 +Note: the statement needs to satisfy this constraint: + = +``` + +* MIN_VALUE + +The MIN_VALUE function returns the minimum value(lexicographically ordered) of the the choosen timeseries (oen or more). + +``` +MIN_VALUE函数返回的是该列按字典序排序的最小值。 +SELECT MIN_VALUE (Path) (COMMA MIN_VALUE (Path))* FROM [WHERE ]? +Eg. SELECT MIN_VALUE(status),MIN_VALUE(temperature) FROM root.ln.wf01.wt01 WHERE root.ln.wf01.wt01.temperature < 24 +Note: the statement needs to satisfy this constraint: + = +``` + +* NOW + +The NOW function returns the current timestamp. This function can be used in the data operation statement to represent time. The result is a signed 64-bit integer, greater than 0. + +``` +NOW() +Eg. INSERT INTO root.ln.wf01.wt01(timestamp,status) VALUES(NOW(), false) +Eg. UPDATE root.ln.wf01.wt01 SET temperature = 23 WHERE time < NOW() +Eg. DELETE FROM root.ln.wf01.wt01.status, root.ln.wf01.wt01.temperature WHERE time < NOW() +Eg. SELECT * FROM root WHERE time < NOW() +Eg. SELECT COUNT(temperature) FROM root.ln.wf01.wt01 WHERE time < NOW() +``` +* SUM + +The SUM function returns the sum of the the choosen timeseries (oen or more) over a specified period of time. The timeseries must be int32, int64, float, double type, and the other types are not to be calculated. The result is a double type number. + +``` +SELECT SUM(Path) (COMMA SUM(Path))* FROM [WHERE ]? +Eg. SELECT SUM(status), SUM(temperature) FROM root.ln.wf01.wt01 WHERE root.ln.wf01.wt01.temperature < 24 +Note: the statement needs to satisfy this constraint: + = +``` + +## Reference + +### Keywords + +``` +Keywords for IoTDB (case insensitive): +ADD, BY, COMPRESSOR, CREATE, DATATYPE, DELETE, DESCRIBE, DROP, ENCODING, EXIT, FROM, GRANT, GROUP, LABLE, LINK, INDEX, INSERT, INTO, LOAD, MAX_POINT_NUMBER, MERGE, METADATA, ON, ORDER, PASSWORD, PRIVILEGES, PROPERTY, QUIT, REVOKE, ROLE, ROOT, SELECT, SET, SHOW, STORAGE, TIME, TIMESERIES, TIMESTAMP, TO, UNLINK, UPDATE, USER, USING, VALUE, VALUES, WHERE, WITH + +Keywords with special meanings (case sensitive): +* Data Types: BOOLEAN, DOUBLE, FLOAT, INT32, INT64, TEXT (Only capitals is acceptable) +* Encoding Methods: BITMAP, DFT, GORILLA, PLAIN, RLE, TS_2DIFF (Only capitals is acceptable) +* Compression Methods: UNCOMPRESSOR, SNAPPY (Only capitals is acceptable) +* Logical symbol: AND, &, &&, OR, | , ||, NOT, !, TRUE, FALSE +``` + +### Identifiers + +``` +QUOTE := '\''; +DOT := '.'; +COLON : ':' ; +COMMA := ',' ; +SEMICOLON := ';' ; +LPAREN := '(' ; +RPAREN := ')' ; +LBRACKET := '['; +RBRACKET := ']'; +EQUAL := '=' | '=='; +NOTEQUAL := '<>' | '!='; +LESSTHANOREQUALTO := '<='; +LESSTHAN := '<'; +GREATERTHANOREQUALTO := '>='; +GREATERTHAN := '>'; +DIVIDE := '/'; +PLUS := '+'; +MINUS := '-'; +STAR := '*'; +Letter := 'a'..'z' | 'A'..'Z'; +HexDigit := 'a'..'f' | 'A'..'F'; +Digit := '0'..'9'; +Boolean := TRUE | FALSE | 0 | 1 (case insensitive) + +``` + +``` +StringLiteral := ( '\'' ( ~('\'') )* '\'' | '\"' ( ~('\"') )* '\"'); +eg. ‘abc’ +eg. “abc” +``` + +``` +Integer := ('-' | '+')? Digit+; +eg. 123 +eg. -222 +``` + +``` +Float := ('-' | '+')? Digit+ DOT Digit+ (('e' | 'E') ('-' | '+')? Digit+)?; +eg. 3.1415 +eg. 1.2E10 +eg. -1.33 +``` + +``` +Identifier := (Letter | '_') (Letter | Digit | '_' | MINUS)*; +eg. a123 +eg. _abc123 + +``` + +### Literals + + +``` +PointValue : Integer | Float | StringLiteral | Boolean +``` +``` +TimeValue : Integer | DateTime | ISO8601 | NOW() +Note: Integer means timestamp type. + +DateTime : +eg. 2016-11-16T16:22:33+08:00 +eg. 2016-11-16 16:22:33+08:00 +eg. 2016-11-16T16:22:33.000+08:00 +eg. 2016-11-16 16:22:33.000+08:00 +Note: DateTime Type can support several types, see Chapter 3 Datetime section for details. +``` +``` +PrecedenceEqualOperator : EQUAL | NOTEQUAL | LESSTHANOREQUALTO | LESSTHAN | GREATERTHANOREQUALTO | GREATERTHAN +``` +``` +Timeseries : ROOT [DOT ]* DOT +LayerName : Identifier +SensorName : Identifier +eg. root.ln.wf01.wt01.status +eg. root.sgcc.wf03.wt01.temperature +Note: Timeseries must be start with `root`(case insensitive) and end with sensor name. +``` + +``` +PrefixPath : ROOT (DOT )* +LayerName : Identifier | STAR +eg. root.sgcc +eg. root.* +``` +``` +Path: (ROOT | ) (DOT )* +LayerName: Identifier | STAR +eg. root.ln.wf01.wt01.status +eg. root.*.wf01.wt01.status +eg. root.ln.wf01.wt01.* +eg. *.wt01.* +eg. * +``` diff --git a/docs/Documentation/UserGuideV0.7.0/6-JDBC Documentation.md b/docs/Documentation/UserGuideV0.7.0/6-JDBC Documentation.md new file mode 100644 index 0000000000000..b003ba451205e --- /dev/null +++ b/docs/Documentation/UserGuideV0.7.0/6-JDBC Documentation.md @@ -0,0 +1,6 @@ + + +- [Chaper6: JDBC API](#chaper6-jdbc-api) + + +# Chaper6: JDBC API \ No newline at end of file diff --git a/docs/Documentation/UserGuideV0.7.0/7-Tools-Cli.md b/docs/Documentation/UserGuideV0.7.0/7-Tools-Cli.md new file mode 100644 index 0000000000000..5faec15a0c8f6 --- /dev/null +++ b/docs/Documentation/UserGuideV0.7.0/7-Tools-Cli.md @@ -0,0 +1,72 @@ + + +- [Cli/shell tool](#clishell-tool) + - [Running Cli/Shell](#running-clishell) + - [Cli/Shell Parameters](#clishell-parameters) + + +# Cli/shell tool +IoTDB provides Cli/shell tools for users to interact with IoTDB server in command lines. This document will show how Cli/shell tool works and what does it parameters mean. + +> Note: In this document, \$IOTDB\_HOME represents the path of the IoTDB installation directory. + +## Running Cli/Shell + +After installation, there is a default user in IoTDB: `root`, and the +default password is `root`. Users can use this username to try IoTDB Cli/Shell tool. The client startup script is the `start-client` file under the \$IOTDB\_HOME/bin folder. When starting the script, you need to specify the IP and PORT. (Make sure the IoTDB server is running properly when you use Cli/Shell tool to connect it.) + +Here is an example where the server is started locally and the user has not changed the running port. The default port is +6667. If you need to connect to the remote server or changes +the port number of the server running, set the specific IP and PORT at -h and -p. + +The Linux and MacOS system startup commands are as follows: + +``` + Shell > ./bin/start-client.sh -h 127.0.0.1 -p 6667 -u root -pw root +``` +The Windows system startup commands are as follows: + +``` + Shell > \bin\start-client.bat -h 127.0.0.1 -p 6667 -u root -pw root +``` +After using these commands, the client can be started successfully. The successful status will be as follows: + +``` + _____ _________ ______ ______ +|_ _| | _ _ ||_ _ `.|_ _ \ + | | .--.|_/ | | \_| | | `. \ | |_) | + | | / .'`\ \ | | | | | | | __'. + _| |_| \__. | _| |_ _| |_.' /_| |__) | +|_____|'.__.' |_____| |______.'|_______/ version + + +IoTDB> login successfully +IoTDB> +``` +Enter ```quit``` or `exit` can exit Client. The client will shows `quit normally` + +## Cli/Shell Parameters + +|Parameter name|Parameter type|Required| Description| Example | +|:---|:---|:---|:---|:---| +|-disableIS08601 |No parameters | No |If this parameter is set, IoTDB will print the timestamp in digital form|-disableIS08601| +|-h <`host`> |string, no quotation marks|Yes|The IP address of the IoTDB server|-h 10.129.187.21| +|-help|No parameters|No|Print help information for IoTDB|-help| +|-p <`port`>|int|Yes|The port number of the IoTDB server. IoTDB runs on port 6667 by default|-p 6667| +|-pw <`password`>|string, no quotation marks|No|The password used for IoTDB to connect to the server. If no password is entered, IoTDB will ask for password in Cli command|-pw root| +|-u <`username`>|string, no quotation marks|Yes|User name used for IoTDB to connect the server|-u root| +|-maxPRC <`maxPrintRowCount`>|int|No|Set the maximum number of rows that IoTDB returns|-maxPRC 10| + +Following is a client command which connects the host with IP +10.129.187.21, port 6667, username "root", password "root", and prints the timestamp in digital form. The maximum number of lines displayed on the IoTDB command line is 10. + +The Linux and MacOS system startup commands are as follows: + +``` + Shell >./bin/start-client.sh -h 10.129.187.21 -p 6667 -u root -pw root -disableIS08601 -maxPRC 10 +``` +The Windows system startup commands are as follows: + +``` + Shell > \bin\start-client.bat -h 10.129.187.21 -p 6667 -u root -pw root -disableIS08601 -maxPRC 10 +``` diff --git a/docs/Documentation/UserGuideV0.7.0/7-Tools-Grafana.md b/docs/Documentation/UserGuideV0.7.0/7-Tools-Grafana.md new file mode 100644 index 0000000000000..26d20fb9a8174 --- /dev/null +++ b/docs/Documentation/UserGuideV0.7.0/7-Tools-Grafana.md @@ -0,0 +1,117 @@ + + +- [IoTDB-Grafana](#iotdb-grafana) + - [Grafana installation](#grafana-installation) + - [Install Grafana](#install-grafana) + - [Install data source plugin](#install-data-source-plugin) + - [Start Grafana](#start-grafana) + - [IoTDB installation](#iotdb-installation) + - [IoTDB-Grafana installation](#iotdb-grafana-installation) + - [Start IoTDB-Grafana](#start-iotdb-grafana) + - [Explore in Grafana](#explore-in-grafana) + - [Add data source](#add-data-source) + - [Design in dashboard](#design-in-dashboard) + + +# IoTDB-Grafana + +This project provides a connector which reads data from IoTDB and sends to Grafana(https://grafana.com/). Before you use this tool, make sure Grafana and IoTDB are correctly installed and started. + +## Grafana installation + +### Install Grafana + +* Download url: https://grafana.com/grafana/download +* version >= 4.4.1 + +### Install data source plugin + +* plugin name: simple-json-datasource +* Download url: https://github.com/grafana/simple-json-datasource + +After downloading this plugin, you can use the grafana-cli tool to install SimpleJson from the commandline: + +``` +grafana-cli plugins install grafana-simple-json-datasource +``` + +Alternatively, you can manually download the .zip file and unpack it into your grafana plugins directory. + +* `{grafana-install-directory}/data/plugin/` (Windows) +* `/var/lib/grafana/plugins` (Linux) +* `/usr/local/var/lib/grafana/plugins`(Mac) + +### Start Grafana +If you use Unix, Grafana will auto start after installing, or you can run `sudo service grafana-server start` command. See more information [here](http://docs.grafana.org/installation/debian/). + +If you use Mac and `homebrew` to install Grafana, you can use `homebrew` to start Grafana. +First make sure homebrew/services is installed by running `brew tap homebrew/services`, then start Grafana using: `brew services start grafana`. +See more information [here](http://docs.grafana.org/installation/mac/). + +If you use Windows, start Grafana by executing grafana-server.exe, located in the bin directory, preferably from the command line. See more information [here](http://docs.grafana.org/installation/windows/). + +## IoTDB installation + +See https://github.com/apache/incubator-iotdb + +## IoTDB-Grafana installation + +```shell +git clone https://github.com/apache/incubator-iotdb.git +mvn clean package -pl grafana -am -Dmaven.test.skip=true +cd grafana +``` + +Copy `application.properties` from `conf/` directory to `target` directory. (Or just make sure that `application.properties` and `iotdb-grafana-{version}-SNAPSHOT.war` are in the same directory.) + +Edit `application.properties` + +``` +# ip and port of IoTDB +spring.datasource.url = jdbc:iotdb://127.0.0.1:6667/ +spring.datasource.username = root +spring.datasource.password = root +spring.datasource.driver-class-name=org.apache.iotdb.jdbc.IoTDBDriver +server.port = 8888 +``` + +### Start IoTDB-Grafana + +```shell +cd grafana/target/ +java -jar iotdb-grafana-{version}-SNAPSHOT.war +``` + +If you see the following output, iotdb-grafana connector is successfully activated. + +```shell +$ java -jar iotdb-grafana-{version}-SNAPSHOT.war + + . ____ _ __ _ _ + /\\ / ___'_ __ _ _(_)_ __ __ _ \ \ \ \ +( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \ + \\/ ___)| |_)| | | | | || (_| | ) ) ) ) + ' |____| .__|_| |_|_| |_\__, | / / / / + =========|_|==============|___/=/_/_/_/ + :: Spring Boot :: (v1.5.4.RELEASE) +... +``` + +## Explore in Grafana + +The default port of Grafana is 3000, see http://localhost:3000 + +Username and password are both "admin" by default. + +### Add data source + +Select `Data Sources` and then `Add data source`, select `SimpleJson` in `Type` and `URL` is http://localhost:8888 + + + + +### Design in dashboard + +Add diagrams in dashboard and customize your query. See http://docs.grafana.org/guides/getting_started/ + + \ No newline at end of file diff --git a/docs/Documentation/UserGuideV0.7.0/7-Tools-Hadoop.md b/docs/Documentation/UserGuideV0.7.0/7-Tools-Hadoop.md new file mode 100644 index 0000000000000..88eb12459f176 --- /dev/null +++ b/docs/Documentation/UserGuideV0.7.0/7-Tools-Hadoop.md @@ -0,0 +1,8 @@ + + +- [TsFile-Hadoop-Connector User Guide](#tsfile-hadoop-connector-user-guide) + + +# TsFile-Hadoop-Connector User Guide + +Comming Soon. \ No newline at end of file diff --git a/docs/Documentation/UserGuideV0.7.0/7-Tools-spark.md b/docs/Documentation/UserGuideV0.7.0/7-Tools-spark.md new file mode 100644 index 0000000000000..afdfb6540b741 --- /dev/null +++ b/docs/Documentation/UserGuideV0.7.0/7-Tools-spark.md @@ -0,0 +1,270 @@ + + +- [TsFile-Spark-Connector User Guide](#tsfile-spark-connector-user-guide) + - [Dependencies & Version](#dependencies--version) + - [Quick Start](#quick-start) + - [Step1: Build TsFile-Spark-Connector](#step1-build-tsfile-spark-connector) + - [Step2: Import Connector Lib into Spark](#step2-import-connector-lib-into-spark) + - [Step3: Use Connector in Spark](#step3-use-connector-in-spark) + - [5.2.1.1 Local Mode](#5211-local-mode) + - [5.2.1.2 Distributed Mode](#5212-distributed-mode) + - [Detail: Conversion between TsFile and Spark](#detail-conversion-between-tsfile-and-spark) + - [TsFile Type <-> SparkSQL type](#tsfile-type---sparksql-type) + - [TsFile Schema <-> SparkSQL Table Structure](#tsfile-schema---sparksql-table-structure) + - [the default way](#the-default-way) + - [unfolding delta_object column](#unfolding-delta_object-column) + - [Example](#example) + - [5.1 Scala API](#51-scala-api) + + +# TsFile-Spark-Connector User Guide + +TsFile-Spark-Connector implements the support of Spark for external data sources of Tsfile type. This enables users to read, write and query Tsfile by Spark. + +## Dependencies & Version + +The versions required for Spark and Java are as follow: + +| Spark Version | Scala Version | Java Version | TsFile | +| ------------- | ------------- | ------------ |------- | +| `2.0+` | `2.11` | `1.8` | `0.7.0`| + +> Note: For more information about how to download and use TsFile, please see the following link: https://github.com/apache/incubator-iotdb/tree/master/tsfile. + +## Quick Start + +### Step1: Build TsFile-Spark-Connector + +To build TsFile-Spark-Connector, you can use the following command: + +``` +mvn clean scala:compile compile package +``` + +In addition, you can also choose to download the available lib package directly from our website. The download link will be comming soon. + +### Step2: Import Connector Lib into Spark + +* import tsfile-spark-connector.jar into spark lib +* replace libthrift-0.9.2.jar and libfb303-0.9.2.jar with libthrift-0.9.1.jar and libfb303-0.9.1.jar respectively. + +### Step3: Use Connector in Spark +#### 5.2.1.1 Local Mode + +Start Spark with TsFile-Spark-Connector in local mode: + +``` +./ --jars tsfile-.jar,tsfile-spark-connector-.jar +``` +Note: + +* \ is the real path of your spark-shell. +* \ is the tsfile version. +* \ is the TsFile-Spark-Connector version. Note that, the version of TsFile-Spark-Connector and TsFile should be correspondence. +* Multiple jar packages are separated by commas without any spaces. +* See https://github.com/apache/incubator-iotdb/tree/master/tsfile for how to get TsFile. + +#### 5.2.1.2 Distributed Mode + +Start Spark with TsFile-Spark-Connector in distributed mode (That is, the spark cluster is connected by spark-shell): + +``` +. / --jars tsfile-.jar,tsfile-spark-connector-.jar --master spark://ip:7077 +``` + +Note: + +* \ is the real path of your spark-shell. +* \ is the tsfile version. +* \ is the TsFile-Spark-Connector version. Note that, the version of TsFile-Spark-Connector and TsFile should be correspondence. +* Multiple jar packages are separated by commas without any spaces. +* See https://github.com/apache/incubator-iotdb/tree/master/tsfile for how to get TsFile. + +## Detail: Conversion between TsFile and Spark + +### TsFile Type <-> SparkSQL type + +This library uses the following mapping the data type from TsFile to SparkSQL: + +| TsFile | SparkSQL| +| --------------| -------------- | +| BOOLEAN | BooleanType | +| INT32 | IntegerType | +| INT64 | LongType | +| FLOAT | FloatType | +| DOUBLE | DoubleType | +| ENUMS | StringType | +| TEXT | StringType | + +### TsFile Schema <-> SparkSQL Table Structure + +The way to display TsFile is related to TsFile Schema. Take the following TsFile structure as an example: There are three Measurements in the Schema of TsFile: status, temperature, and hardware. The basic info of these three Measurements is as follows: + +
+ + + + + +
NameTypeEncode
statusBooleanPLAIN
temperatureFloatRLE
hardwareTextPLAIN
+Basic info of Measurements +
+ +The existing data in the file is as follows: + +
+ + + + + + + + +
delta\_object:root.ln.wf01.wt01delta\_object:root.ln.wf02.wt02delta\_object:root.sgcc.wf03.wt01
statustemperaturehardwarestatusstatustemperature
timevaluetimevaluetimevaluetimevaluetimevaluetimevalue
1True12.22"aaa"1True2True33.3
3True22.24"bbb"2False3True66.6
5 False 32.16"ccc"4True4True88.8
7 True 42.08"ddd"5False6True99.9
+A set of time-series data +
+ +There are two ways to show it out: + +#### the default way + +Two columns will be created to store the full path of the device: time(LongType) and delta_object(StringType). + +- `time` : Timestamp, LongType +- `delta_object` : Delta_object ID, StringType + +Next, a column is created for each Measurement to store the specific data. The SparkSQL table structure is as follows: + +
+ + + + + + + + + + + + + + + + + + + + + +
time(LongType) delta\_object(StringType)status(BooleanType)temperature(FloatType)hardware(StringType)
1 root.ln.wf01.wt01 True2.2null
1 root.ln.wf02.wt02 Truenullnull
2 root.ln.wf01.wt01 null2.2null
2 root.ln.wf02.wt02 Falsenull"aaa"
2 root.sgcc.wf03.wt01 Truenullnull
3 root.ln.wf01.wt01 True2.1null
3 root.sgcc.wf03.wt01 True3.3null
4 root.ln.wf01.wt01 null2.0null
4 root.ln.wf02.wt02 Truenull"bbb"
4 root.sgcc.wf03.wt01 Truenullnull
5 root.ln.wf01.wt01 Falsenullnull
5 root.ln.wf02.wt02 Falsenullnull
5 root.sgcc.wf03.wt01 Truenullnull
6 root.ln.wf02.wt02 nullnull"ccc"
6 root.sgcc.wf03.wt01 null6.6null
7 root.ln.wf01.wt01 Truenullnull
8 root.ln.wf02.wt02 nullnull"ddd"
8 root.sgcc.wf03.wt01 null8.8null
9 root.sgcc.wf03.wt01 null9.9null
+
+ + +#### unfolding delta_object column + +Expand the device column by "." into multiple columns, ignoring the root directory "root". Convenient for richer aggregation operations. If the user wants to use this display way, the parameter "delta\_object\_name" needs to be set in the table creation statement (refer to Example 5 in Section 5.1 of this manual), as in this example, parameter "delta\_object\_name" is set to "root.device.turbine". The number of path layers needs to be one-to-one. At this point, one column is created for each layer of the device path except the "root" layer. The column name is the name in the parameter and the value is the name of the corresponding layer of the device. Next, one column will be created for each Measurement to store the specific data. + +Then The SparkSQL Table Structure is as follow: + +
+ + + + + + + + + + + + + + + + + + + + + +
time(LongType) group(StringType) field(StringType) device(StringType)status(BooleanType)temperature(FloatType)hardware(StringType)
1 ln wf01 wt01 True2.2null
1 ln wf02 wt02 Truenullnull
2 ln wf01 wt01 null2.2null
2 ln wf02 wt02 Falsenull"aaa"
2 sgcc wf03 wt01 Truenullnull
3 ln wf01 wt01 True2.1null
3 sgcc wf03 wt01 True3.3null
4 ln wf01 wt01 null2.0null
4 ln wf02 wt02 Truenull"bbb"
4 sgcc wf03 wt01 Truenullnull
5 ln wf01 wt01 Falsenullnull
5 ln wf02 wt02 Falsenullnull
5 sgcc wf03 wt01 Truenullnull
6 ln wf02 wt02 nullnull"ccc"
6 sgcc wf03 wt01 null6.6null
7 ln wf01 wt01 Truenullnull
8 ln wf02 wt02 nullnull"ddd"
8 sgcc wf03 wt01 null8.8null
9 sgcc wf03 wt01 null9.9null
+ +
+ +TsFile-Spark-Connector can display one or more TsFiles as a table in SparkSQL By SparkSQL. It also allows users to specify a single directory or use wildcards to match multiple directories. If there are multiple TsFiles, the union of the measurements in all TsFiles will be retained in the table, and the measurement with the same name will have the same data type by default. Note that if there is a situation with the same name but different data types, TsFile-Spark-Connector will not guarantee the correctness of the results. + +The writing process is to write a DataFrame as one or more TsFiles. By default, two columns need to be included: time and delta_object. The rest of the columns are used as Measurement. If user wants to write the second table structure back to TsFile, user can set the "delta\_object\_name" parameter(refer to Section 5.1 of Section 5.1 of this manual). + +## Example + +The path of 'test.tsfile' used in the following examples is "data/test.tsfile". Please upload 'test.tsfile' to hdfs in advance and the directory is "/test.tsfile". + +### 5.1 Scala API + +* **Example 1** + + ```scala + import cn.edu.tsinghua.tsfile._ + + //read data in TsFile and create a table + val df = spark.read.tsfile("/test.tsfile") + df.createOrReplaceTempView("tsfile_table") + + //query with filter + val newDf = spark.sql("select * from tsfile_table where temperature > 1.2").cache() + + newDf.show() + ``` + +* **Example 2** + + ```scala + val df = spark.read + .format("cn.edu.tsinghua.tsfile") + .load("/test.tsfile ") + df.filter("time < 10").show() + ``` + +* **Example 3** + + ```scala + //create a table in SparkSQL and build relation with a TsFile + spark.sql("create temporary view tsfile_table using cn.edu.tsinghua.tsfile options(path = \"test.ts\")") + + spark.sql("select * from tsfile_table where temperature > 1.2").show() + ``` + +* **Example 4(using options to read)** + + ```scala + import cn.edu.tsinghua.tsfile._ + + val df = spark.read.option("delta_object_name", "root.group.field.device").tsfile("/test.tsfile") + + //create a table in SparkSQL and build relation with a TsFile + df.createOrReplaceTempView("tsfile_table") + + spark.sql("select * from tsfile_table where device = 'wt01' and field = 'wf01' and group = 'ln' and time < 10").show() + ``` + +* **Example 5(write)** + + ```scala + import cn.edu.tsinghua.tsfile._ + + val df = spark.read.tsfile("/test.tsfile").write.tsfile("/out") + ``` + +* **Example 6(using options to write)** + + ```scala + import cn.edu.tsinghua.tsfile._ + + val df = spark.read.option("delta_object_name", "root.group.field.device").tsfile("/test.tsfile") + + df.write.option("delta_object_name", "root.group.field.device").tsfile("/out") + ``` +